[안드로이드] GPS 최근 위치 불러오기
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.tap3);
LocMan = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
gpsStatus = (TextView) findViewById(R.id.txv_gps_status);
gpsValue = (TextView) findViewById(R.id.txv_gps);
provider = LocMan.getBestProvider(new Criteria(), true); // 최고의 GPS 찾기
Log.i("sinwho",provider );
location = LocMan.getLastKnownLocation(LocationManager.GPS_PROVIDER); // 최근 위치 정보 읽기
String temp;
if(location == null)
{
temp = "최근 위치 : 알수 없음";
}
else
{
temp = String.format("최근 위치 : \n위도:%f\n경도:%f\n고도:%f",location.getLatitude(),location.getLongitude(),location.getAltitude());
}
gpsValue.setText(temp);
}
'프로그래밍 > 안드로이드' 카테고리의 다른 글
[안드로이드] 버튼 클릭 처리 (0) | 2016.06.23 |
---|---|
[안드로이드] Paint 속성 및 메서드 (0) | 2016.06.22 |
[안드로이드] GPS로 현재 위치(경도,위도,고도) 확인 (0) | 2016.06.15 |
[안드로이드] GPS 정보 얻어오기 (0) | 2016.06.15 |
[추천앱] 햄버거 메뉴가 궁금할땐 '햄버거 메뉴판' (0) | 2016.06.01 |