我开发了检测 android 设备位置并在文本视图中显示其值的简单应用程序
应用程序一旦开始抛出 RuntimeException 就会崩溃。
以下是 GPS.java
public class GPS extends Activity implements LocationListener {
private TextView latituteField;
private TextView longitudeField;
private LocationManager locationManager;
private String provider;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.gps);
latituteField = (TextView) findViewById(R.id.TextView02);
longitudeField = (TextView) findViewById(R.id.TextView04);
LocationManager service = (LocationManager) getSystemService(LOCATION_SERVICE);
boolean enabled = service
.isProviderEnabled(LocationManager.GPS_PROVIDER);
if (!enabled) {
Intent intent = new Intent(
android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivity(intent);
}
Criteria criteria = new Criteria();
provider = locationManager.getBestProvider(criteria,false);
Location location = locationManager.getLastKnownLocation(provider);
if (location != null) {
Log.d("PROVIDER", "Provider " + provider + " has been selected.");
onLocationChanged(location);
} else {
latituteField.setText("Location not available");
longitudeField.setText("Location not available");
}
}
日志如下:
10-09 16:49:35.733: E/AndroidRuntime(1616): 致命异常: main 10-09 16:49:35.733: E/AndroidRuntime(1616): java.lang.RuntimeException: 无法启动活动 ComponentInfo{com. example.gps/com.example.gps.GPS}:java.lang.NullPointerException 10-09 16:49:35.733:E/AndroidRuntime(1616):在 android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1956) 10 -09 16:49:35.733: E/AndroidRuntime(1616): 在 android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1981) 10-09 16:49:35.733: E/AndroidRuntime(1616): 在 android.app .ActivityThread.access$600(ActivityThread.java:123) 10-09 16:49:35.733: E/AndroidRuntime(1616): 在 android.app.ActivityThread$H.handleMessage(ActivityThread.java:1147) 10-09 16: 49:35.733: E/AndroidRuntime(1616): 在 android.os.Handler.dispatchMessage(Handler.java:99) 10-09 16:49:35.733: E/AndroidRuntime(1616): 在 android.os.Looper.loop(Looper.java:137) 10-09 16:49:35.733: E/AndroidRuntime(1616): 在android.app.ActivityThread.main(ActivityThread.java:4424) 10-09 16:49:35.733: E/AndroidRuntime(1616): 在 java.lang.reflect.Method.invokeNative(Native Method) 10-09 16:49 :35.733: E/AndroidRuntime(1616): at java.lang.reflect.Method.invoke(Method.java:511) 10-09 16:49:35.733: E/AndroidRuntime(1616): at com.android.internal。 os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784) 10-09 16:49:35.733: E/AndroidRuntime(1616): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551) 10 -09 16:49:35.733: E/AndroidRuntime(1616): at dalvik.system.NativeStart.main(Native Method) 10-09 16:49:35.733: E/AndroidRuntime(1616): Caused by: java.lang.NullPointerException 10-09 16:49:35.733: E/AndroidRuntime(1616): at com.example.gps.GPS.onCreate(GPS.java:44) 10-09 16:49:35.733: E/AndroidRuntime(1616):在 android.app.Activity.performCreate(Activity.java:4465) 10-09 16:49:35.733: E/AndroidRuntime(1616): 在 android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049) 10-09 16 :49:35.733: E/AndroidRuntime(1616): 在 android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1920) 10-09 16:49:35.733: E/AndroidRuntime(1616): ... 还有 11 个callActivityOnCreate(Instrumentation.java:1049) 10-09 16:49:35.733: E/AndroidRuntime(1616): 在 android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1920) 10-09 16:49:35.733: E/ AndroidRuntime(1616): ... 11 更多callActivityOnCreate(Instrumentation.java:1049) 10-09 16:49:35.733: E/AndroidRuntime(1616): 在 android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1920) 10-09 16:49:35.733: E/ AndroidRuntime(1616): ... 11 更多