1

我正在尝试在一个小型 android 应用程序中检测用户位置。

该应用程序以前正在运行。

但是现在当我运行我的应用程序时它会崩溃。

这是我的代码。

private void getUserLocation() {

    location_manager = (LocationManager) getSystemService(LOCATION_SERVICE);
    if (location_manager != null) {
        provider = location_manager.getBestProvider(criteria, true);
        location = location_manager.getLastKnownLocation(provider);
        location_manager.requestLocationUpdates(provider,
                Map.MIN_TIME_BW_UPDATES,
                Map.MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
        lat = location.getLatitude();
        lang = location.getLongitude();
    }
}

堆栈跟踪

E/AndroidRuntime(10925): FATAL EXCEPTION: main
E/AndroidRuntime(10925): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.project.kamani.nearby/com.project.kamani.nearby.Map}: java.lang.NullPointerException
E/AndroidRuntime(10925): Caused by: java.lang.NullPointerException
E/AndroidRuntime(10925):    at com.project.kamani.nearby.Map.getUserLocation(Map.java:185)
E/AndroidRuntime(10925):    at com.project.kamani.nearby.Map.onCreate(Map.java:75)

根据我的解释,这里说错误在我的代码中的第 75 行。

所以从第 75 行看,我只是调用了上面的函数getUserLocation()

我无法理解为什么它会引发空指针异常。

4

3 回答 3

1

我认为,问题可能是由于位置为空。在使用它之前验证它不为空。(如location.getLatitude()这里)。


试试下面的代码。

private void getUserLocation() {

location_manager = (LocationManager) getSystemService(LOCATION_SERVICE);
if (location_manager != null) {

   List<String > provider=location_manager .getAllProviders();
            Location location = null;
            for(int i=0;i<provider.size();i++){
                 location=location_manager .getLastKnownLocation(provider.get(i));
                 if(location!=null){
                          location_manager.requestLocationUpdates(provider.get(i),
                                                    Map.MIN_TIME_BW_UPDATES,
                                                    Map.MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                       break;
                      }
            }


if(location!=null){
    lat = location.getLatitude();
    lang = location.getLongitude();
}else{
  // here you can initialize manually if you wish
}
}
}
于 2013-09-23T13:05:49.117 回答
1

如果 getLastKnownLocation 没有所选提供者的数据,则返回 null。所以如果它没有最后知道的位置,lat 和 long 将永远为 null,因为位置是在 listener 中设置的,它是异步的,所以你需要在 onLocationChanged 中设置 lat 和 long。

您还应该移至 Google Play 服务http://developer.android.com/training/location/index.html中的 LocationClient

于 2013-09-23T13:18:33.440 回答
0

看看这个答案我正在获取同样的问题我已经解决了我的问题你可以使用这个代码

public Location getLocation() {
    try {
        locationManager = (LocationManager) mContext
                .getSystemService(LOCATION_SERVICE);

        // getting GPS status
        isGPSEnabled = locationManager
                .isProviderEnabled(LocationManager.GPS_PROVIDER);

        // getting network status
        isNetworkEnabled = locationManager
                .isProviderEnabled(LocationManager.NETWORK_PROVIDER);

        if (!isGPSEnabled && !isNetworkEnabled) {
            // no network provider is enabled
        } else {
            this.canGetLocation = true;
            // First get location from Network Provider
            if (isNetworkEnabled) {
                locationManager.requestLocationUpdates(
                        LocationManager.NETWORK_PROVIDER,
                        MIN_TIME_BW_UPDATES,
                        MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                Log.d("Network", "Network");
                if (locationManager != null) {
                    location = locationManager
                            .getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
                    if (location != null) {
                        latitude = location.getLatitude();
                        longitude = location.getLongitude();
                    }
                }
            }
            // if GPS Enabled get lat/long using GPS Services
            if (isGPSEnabled) {
                if (location == null) {
                    locationManager.requestLocationUpdates(
                            LocationManager.GPS_PROVIDER,
                            MIN_TIME_BW_UPDATES,
                            MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                    Log.d("GPS Enabled", "GPS Enabled");
                    if (locationManager != null) {
                        location = locationManager
                                .getLastKnownLocation(LocationManager.GPS_PROVIDER);
                        if (location != null) {
                            latitude = location.getLatitude();
                            longitude = location.getLongitude();
                        }
                    }
                }
            }
        }

    } catch (Exception e) {
        e.printStackTrace();
    }

    return location;
}
@Override
public void onLocationChanged(Location location) {
}

@Override
public void onProviderDisabled(String provider) {
}

@Override
public void onProviderEnabled(String provider) {
}

@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}

@Override
public IBinder onBind(Intent arg0) {
    return null;
}
于 2015-09-03T10:33:30.497 回答