如何从android获取当前位置的纬度和经度?
答案 0 :(得分:3)
您可以使用LocationListener类在移动中获取坐标。
在不移动时使用以下内容获取协调员。
LocationManager lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
Location location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if(location == null){
LAT = 0.0;
LONG = 0.0;
loc.setText("No Location");
}
进行深入讨论 -