private void getLocation(){
locationManager = (LocationManager) getContext().getSystemService(Context.LOCATION_SERVICE);
List<String> providers = locationManager.getAllProviders();
for (String provider : providers) {
Log.e("GPS_provider: ", provider);
}
Criteria criteria = new Criteria();
bestProvider = locationManager.getBestProvider(criteria, false);
Log.e("Best_provider: ", bestProvider);
locationListener = new LocationListener() {
public void onLocationChanged(Location location) {
// Called when a new location is found by the network location provider.
Log.e("Loc_changed", ""+ location.getLatitude() + location.getLongitude());
mLocation = location;
}
public void onStatusChanged(String provider, int status, Bundle extras) {}
public void onProviderEnabled(String provider) {
Log.e("Provider_enabled:", provider);
}
public void onProviderDisabled(String provider) {
Log.e("Provider_disabled:", provider);
}
};
// Register the listener with the Location Manager to receive location updates
try {
locationManager.requestLocationUpdates(bestProvider, 0, 0, locationListener);
mLocation = locationManager.getLastKnownLocation(bestProvider);
if (mLocation == null){
mLocation = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
Log.e("GPS network", "true");
}
} catch (SecurityException e){
Log.e("GPS problem", "GPS problem "+e.getMessage());
}
}
我尝试在执行HTTP GET之前读取位置以检索我的记录:
private void loadBusinesses(){
gpsMsg.setVisibility(View.INVISIBLE);
getLocation();
currentView = GEOVIEW;
businessesList.nextUrl = "null";
if (!businessesList.isEmpty()){
Log.e("businessList ","not empty");
businessesList.clear();
notifyAdapter();
}
Double latitude;
Double longitude;
try{
latitude = mLocation.getLatitude();
longitude = mLocation.getLongitude();
} catch (NullPointerException e){
Log.e("GPS", "Location unavailable");
gpsMsg.setVisibility(View.VISIBLE);
swipeContainer.setRefreshing(false);
return;
}
}
即使我检查GPS是否打开,当我尝试使用GPS位置时,我总是会为空,然后从网络获取位置。 出于这个原因,我试图将GPS设置设置为&#34;只有GPS&#34;,我得到NULL,所以没有位置。 我读了所有其他帖子,但我一直在GPS上取消。我使用USB Debug在真实设备上进行模拟。
有什么想法吗?
答案 0 :(得分:1)
我相信你正在解释错误的LocationManager如何工作。
当您致电locationManager.requestLocationUpdates(bestProvider, 0, 0, locationListener)
时,您只是注册接收位置更新,这通常需要一些时间才能发生(并且可能永远不会发生,正如CommonsWare指出的那样)。此次调用不会立即为您提供更新后的位置,因此,在下一行代码中,当您致电getLastKnownLocation()
时,接收null
是正常行为。
那就是说,我认为处理你情况的最佳方法是:
1 - 首先:检查getLastKnownLocation()
是否返回null(如果所选的LocationProvider已经是您应用中的最近位置,或者甚至是来自其他应用的位置,它会在此处为您返回。但请注意:此位置可能会非常过时!)。
2 - 如果getLastKnownLocation()
返回null,那么您将没有其他选择,只能请求一个全新的位置并等待它到达,这将发生在方法{{位于LocationListener中的1}}。因此,要做到这一点,您有两种选择:(a)致电onLocationChanged
,它会为您返回一次的更新位置,或(b)致电requestSingleUpdate()
,这将注册locationManager以接收定期位置更新(并将消耗更多电池)。
3 - 在这两个选项中,当您收到位置更新时,系统会调用LocationListener中的requestLocationUpdates()
方法,然后您可以通过此方法调用onLocationChanged
,并收到全新的位置信息
希望这很清楚;)
-----编辑-----
在调用loadBusinesses
或requestSingleUpdate
之前,您还应该在运行时请求位置权限。为此,请使用以下代码段:
requestLocationUpdates
如果之前未授予权限,系统将提示用户授予(或不授予)权限。因此,您还应该@Override您的活动中的方法if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
// If permission is not granted, request it from user. When user responds, your activity will call method "onRequestPermissionResult", which you should override
ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.ACCESS_COARSE_LOCATION}, 1);
} else {
locationManager.requestSingleUpdate(bestProvider, locationListener, null)
}
,以检查用户是否授予了权限,然后正确回复。这是您应该覆盖的方法:
onRequestPermissionResult
答案 1 :(得分:0)
getLastKnownLocation()
经常返回null
。这是完全正常的。您只能使用getLastKnownLocation()
:
否则,您需要推迟HTTP GET请求,直到获得onLocationChanged()
中给出的位置为止。请记住,您可能从不获取位置修复。
任何体面的Android书籍,Android课程和the documentation都会正确使用LocationManager
。
答案 2 :(得分:0)
关于getLastKnownLocation()
的问题是,如果您更改设置中的位置提供程序,重新启动设备或在设备上打开和关闭位置服务,则会清除最后一个已知位置并返回{{1 }}。最重要的是,如果返回一个位置点,它可能会很旧,以至于它可能无关紧要。 null
函数应该用作提示。
关于您的评论说您在室内使用GPS时没有任何结果,但谷歌地图仍可正常使用... Google地图使用FusedLocationProviderApi
,它使用GPS和网络为您提供最佳位置时间。如果您只在自己的设备上使用GPS,并打开谷歌地图,您可能会看到它给你一个坏点(灰点),或者根本没有点。
我建议您使用Google's Fused Location提供商来满足您的位置需求,因为它可以为您节省电量,可靠的后备,以防您丢失GPS,并且拥有它自己的最后一个已知位置功能39; t似乎与getLastKnownLocation()
有关。