gpt4 book ai didi

java - Android requestLocationUpdates with GPS null

转载 作者:行者123 更新时间:2023-11-30 00:32:38 24 4
gpt4 key购买 nike

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 定位时我总是得到 null,然后它从 NETWORK 获取位置。出于这个原因,我试图将 GPS 设置设置为“仅 GPS”,但我得到 NULL,所以没有位置。我阅读了所有其他帖子,但我一直在 GPS 上取 null。我正在使用 USB 调试在真实设备上进行仿真。

有什么想法吗?

最佳答案

我认为您对 LocationManager 工作方式的解释有误。

当您调用 locationManager.requestLocationUpdates(bestProvider, 0, 0, locationListener) 时,您只是在注册以接收位置更新,这通常需要一些时间才能发生(并且可能永远不会发生,正如 CommonsWare 指出的那样出去)。此调用不会立即为您提供更新的位置,因此,在下一行代码中,当您调用getLastKnownLocation() 时,接收 是正常行为空

也就是说,我认为处理您的情况的最佳方法是:

1 - 首先:检查 getLastKnownLocation() 是否返回 null(如果选择的 LocationProvider 已经从您的应用程序或其他应用程序中获得了最近的位置,它将在此处为您返回。但请注意:此位置可能非常过时!)。

2 - 如果 getLastKnownLocation() 返回 null,那么您将别无选择,只能请求一个全新的位置并等待它到达,这将会发生在 LocationListener 的方法 onLocationChanged 上。因此,要做到这一点,您有两个选择:(a) 调用 requestSingleUpdate(),它将仅一次为您返回更新后的位置,或者 (b) 调用 requestLocationUpdates(),它将注册 locationManager 以接收定期位置更新(并且会消耗更多电池)。

3 - 在这两个选项中,当您收到位置更新时,LocationListener 中的方法 onLocationChanged 将被调用,然后您可以从该方法调用您的 loadBusinesses,收到全新的位置。

希望这是清楚的 ;)

----- 编辑 -----

在调用 requestSingleUpdaterequestLocationUpdates 之前,您还应该在运行时请求位置权限。为此,请使用此代码段:

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)
}

如果之前未授予权限,系统将提示用户授予(或不授予)。因此,您还应该在您的 Activity 中@Override onRequestPermissionResult 方法,以检查用户是否授予权限,然后正确响应。这是您应该覆盖的方法:

@Override
public void onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) {
switch (requestCode) {
case 1:
if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
// PERMISSION WAS GRANTED
} else {
// USER DID NOT GRANT PERMISSION
}
break;
}
}

关于java - Android requestLocationUpdates with GPS null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44005913/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com