我在这里已经阅读了很多关于这个主题的Q& As但是我不得不说它们都不起作用。
我的问题是,即使我启用了GPS,我也无法获得位置,除非我打开谷歌地图并获取我的位置然后返回应用程序,这绝对不是用户的选择。
我有以下功能来获取位置。
public Location getCurrentLocation() {
LocationManager locationManager = (LocationManager) context
.getSystemService(Context.LOCATION_SERVICE);
Criteria criteria = new Criteria();
String provider = locationManager.getBestProvider(criteria, true);
Location myLocation = locationManager.getLastKnownLocation(provider);
return myLocation;
}
关于如何解决这个问题,我有什么遗漏? 我也尝试过这个 http://developer.android.com/training/location/retrieve-current.html#last-known 但仍然返回null。
提前致谢
答案 0 :(得分:8)
关于如何解决这个问题我有什么遗漏吗?
GPS无线电正常断电,因为它们是主要的电池消耗。因此,getLastKnownLocation()
可以经常返回null
或过时的位置,因为没有检查位置修复。因此,getLastKnownLocation()
只有在您对该地点有不寻常的兴趣时才有用,如果没有地点则感到高兴。
如果您需要知道位置,则需要使用requestLocationUpdates()
或类似内容,以便Android启动GPS无线电并主动尝试查找位置。