getLastKnownLocation方法始终返回null

时间:2011-07-28 04:29:54

标签: android locationmanager

我有一个固定位置的问题。我用getLastKnownLocation(LocationManager.NETWORK_PROVIDER); 但总是返回null,我已在AndroidManifest.xml中设置了权限。

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />

并在“设置”中启用 - &gt;位置和安全 - &gt;通过网络定位。

TextView locationShow = (TextView) this.findViewById(R.id.location);
    double latitude = 0.0, longitude = 0.0;
    LocationManager locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
    if (locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
        Location location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
        if (location != null) {
            latitude = location.getLatitude();
            longitude = location.getLongitude();
        }
    }
    else {
        LocationListener locationListener = new LocationListener() {
            public void onLocationChanged(Location location) {
                if (location != null) {
                    Log.i("SuperMap", "Location changed : Lat: " + location.getLatitude() + " Lng: " +
                        location.getLongitude());
                }
            }

            public void onProviderDisabled(String provider) {
            }

            public void onProviderEnabled(String provider) {
            }

            public void onStatusChanged(String provider, int status, Bundle extras) {
            }
        };
        locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 1000, 0,
                                               locationListener);
        Location location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
        if (location != null) {
            latitude = location.getLatitude();
            longitude = location.getLongitude();
        }
        locationShow.setText("经度:" + latitude + "纬度:" + longitude);

我发现其他应用可以正确显示位置,所以我的代码可能有问题。

1 个答案:

答案 0 :(得分:4)

getLastKnownLocation()提供最后一个有效的缓存位置。

您正尝试从网络提供商处获取缓存位置。您需要等待几分钟才能获得有效的修复。由于网络提供程序的缓存为空,因此您显然在那里获得null