Sep 28, 2012

TextView 왼쪽 아이콘

android:drawableLeft="@drawable/ic_launcher"

or

TextView tv; 
Drawable icon; 


Bitmap b = Bitmap.createScaledBitmap(((BitmapDrawable) icon).getBitmap(), 120, 120, false);
icon = new BitmapDrawable(b); 
icon.setBounds(0, 0, icon.getIntrinsicWidth(), icon.getIntrinsicHeight());

tv.setTextSize(12); 
tv.setGravity(Gravity.CENTER); 
tv.setCompoundDrawables(icon, null, null, null);

Sep 10, 2012

GPS 관련



LocationManager
위치 기반 서비스를 관리하는 Class
Location
위치 정보를 가지고있는 Class
LocationPovider
위치를 결정하는데 사용되는 공급자를 지정.
위치 공급자 식별자
LocationManager.GPS_PROVIDER
LocationManager.NETWORK_PROVIDER
LocationListener
위치 갱신에 따른 위치 정보를 수신할 수 있는 Listener Interface
Permission
ACCESS_FINE_LOCATION - 정밀한위치를가져온다.
ACCESS_COARSE_LOCATION - 낮은정밀도의위치를가져온다.