0

Google Play Developer Console から次のエラー メッセージが表示されました。try/catch 以外に、null ポインターを与える可能性のあるものを見つけることができません。それは、API 8 で使用できない Geocoder.isPresent() でしたか?

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.xxxxxxxx.SearchActivity}: java.lang.NullPointerException
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2100)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2125)
at android.app.ActivityThread.access$600(ActivityThread.java:140)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1227)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4898)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1006)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:773)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at com.xxxxxxxx.SearchActivity.updateUserLocationNameBasedOnNewCoordinates(SearchActivity.java:367)
at com.xxxxxxxx.SearchActivity.useDeviceLocation(SearchActivity.java:338)
at com.xxxxxxxx.SearchActivity.start(SearchActivity.java:495)
at com.xxxxxxxx.SearchActivity.onCreate(SearchActivity.java:253)
at android.app.Activity.performCreate(Activity.java:5206)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1083)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2064)
... 11 more

アクティビティ:

    public void updateUserLocationNameBasedOnNewCoordinates() {

    String city = null;
    String country = null;

    Geocoder geocoder = new Geocoder(this, Locale.getDefault());
    List<Address> list;

    if (Geocoder.isPresent()) {
        try {
            list = geocoder.getFromLocation(userLocation.getLatitude(),
                    userLocation.getLongitude(), 1);
            Address address = list.get(0);
            city = address.getLocality();
            country = address.getCountryName();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    if (city == null || country == null)
        locationDescription = "Map location";
    else
        locationDescription = city + " " + country;

}

マニフェスト:

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />
4

1 に答える 1

1

Geocoder.isPresent()のドキュメントを見ると、次のように書かLack of network connectivity may still cause these methods to return null or empty lists.れています。接続されていることを確認してください。

その他の重要なことは、ドキュメントには API レベル 9 で追加されたと記載されていますがandroid:minSdkVersion=8、マニフェストに記載されていることです。android:minSdkVersion=9または上記に言及してみてください。お役に立てれば。

于 2013-07-17T03:41:39.153 に答える