안드로이드 개발 질문/답변
(글 수 45,052)
제목과 같이 일반 엑티비티서
현재 위치 위도와 경도를 받아오고 싶습니다
구글도 어제 종일 찾아보고 해도
안되는것들이 대다수..
자세한 설명이면 정말 감사하겠지만
링크라도 부탁드릴께요!!
현재 위치 위도와 경도를 받아오고 싶습니다
구글도 어제 종일 찾아보고 해도
안되는것들이 대다수..
자세한 설명이면 정말 감사하겠지만
링크라도 부탁드릴께요!!
2011.04.07 13:10:16
LocationManager loc;
double latitude,longitude;
loc = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
Criteria criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_COARSE);
criteria.setPowerRequirement(Criteria.POWER_LOW);
criteria.setAltitudeRequired(false);
criteria.setBearingRequired(false);
criteria.setSpeedRequired(false);
criteria.setCostAllowed(true);
String bestProvider = loc.getBestProvider(criteria, true);
Location location;
try
{
location = loc.getLastKnownLocation(bestProvider);
if(location != null)
{
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
catch (Exception e1)
{
Log.i("locexception",e1.toString());
}



