0

我创建了一个应用程序,用于通过复选框显示网络提供商或 GPS 提供商用户选择的位置。当用户选择不启用 GPS 时,工作正常。但是当用户在近距离调试后第一次选择 GPS 时,进入家庭崩溃......重复后开放区域工作......没有问题的工作和家庭内部。会发生什么?我如何避免此错误?需要使用不同的代码应用程序更改我的代码自动选择最佳提供商?(不是用户)这是我的代码....

  // Get the location manager
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
// Define the criteria how to select the locatioin provider -> use
// default
if(gps_en==true){ //In previous activity with checkbox user choice preferences

    provider = LocationManager.GPS_PROVIDER;
    Location location = locationManager.getLastKnownLocation(provider);

    // Initialize the location fields
    if (location != null) {

        System.out.println("Provider " + provider + " has been selected.");

      onLocationChanged(location);

    } else {
      latituteField.setText("Location not available");
      longitudeField.setText("Location not available");
    }
}
else{
Criteria criteria = new Criteria();
provider = locationManager.getBestProvider(criteria, false);
Location location = locationManager.getLastKnownLocation(provider);

// Initialize the location fields
if (location != null) {

    System.out.println("Provider " + provider + " has been selected.");

  onLocationChanged(location);

} else {
  latituteField.setText("Location not available");
  longitudeField.setText("Location not available");
  }

}


java.lang.NullPointerException
loc.LocTracker.onSensorChanged(LocTracker.java:769)
android.hardware.SensorManager$ListenerDelegate$1.handleMessage(SensorManager.java:580)
android.os.Handler.dispatchMessage(Handler.java:99)
android.os.Looper.loop(Looper.java:137)
android.app.ActivityThread.main(ActivityThread.java:4482)
java.lang.reflect.Method.invokeNative(Native Method)         
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:794)
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:561)
dalvik.system.NativeStart.main(Native Method)

你能为我的代码的这一点建议一个更好的方法吗?权限没问题。我希望应用程序自动选择最佳提供商 GPS 或具有准确性标准的网络。从网络提供商开始,如果用户在开放区域应用程序中,如果 GPS 提供商具有更好的准确性,则使用 GPS 提供商。谢谢。

4

2 回答 2

0

您可能在 UI 线程上执行此操作,您可能应该对在后台线程上执行此操作进行一些研究。在 UI 线程上执行此类工作对于应用程序来说非常耗时。

于 2013-05-01T17:50:20.877 回答
0

您是否为清单文件添加了适当的权限?

我相信您需要以下其中一项来获取 GPS/位置代码:

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

或者

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
于 2013-05-01T17:06:43.680 回答