Iam從ICS和Jelly Bean設備獲取空指針異常,同時使用以下代碼中的Facebook。ICS和Jelly Bean中的ComposerActivity.java崩潰
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
String mimeType = image.getMimeType();
intent.setType(mimeType);
intent.putExtra(Intent.EXTRA_STREAM, image.fullSizeImageUri());
startActivity(Intent.createChooser(intent, "Share Image"));
和崩潰日誌是
11-03 17:16:10.899:E/AndroidRuntime(26187):致命異常:主 11-03 17:16:10.899:E/AndroidRuntime(26187): java.lang.NullPointerException 11-03 17:16:10.899: E/AndroidRuntime(26187):at com.facebook.katana.activity.composer.ComposerActivity.b(ComposerActivity.java:722) 11-03 17:16:10.899:E/AndroidRuntime(26187):在 com.facebook.katana.activity.composer.ComposerActivity.onUserInteracti on(ComposerActivity.java:825) 11-03 17:16:10.899:E/AndroidRuntime(26187):at android.app.Activity.performUserLeaving(Activity.java:4672)11-03 17:16:10.899 :E/AndroidRuntime(26187):在 android.app.Instrumentation.callActivityOnUserLeaving(Instrumentation.java:1209) 11-03 17:16:10.899:E/AndroidRuntime(26187):在 android.app.ActivityThread.performUserLeavingActivity (ActivityThread.java:2670) 11-03 17:16:10.899:E/AndroidRuntime(26187):at android.app.ActivityThread.handlePauseActivity(ActivityThread.java:2650) 11-03 17:16:10.899: E/AndroidRuntime(26187):at android.app.ActivityThread.access $ 800(ActivityThread.java:128)11-03 17:16:10.899:E/AndroidRuntime(26187):at android.app.ActivityThread $ H.handleMessage(ActivityThread.java:1168) 11-03 17:16:10.899:E/AndroidRuntime(26187):at android.os.Handler.dispatchMessage (Handler.java:99)11-03 17:16:10.899:E/AndroidRuntime(26187):at android.os.Looper.loop(Looper.java:137)11-03 17:16:10.899: E/AndroidRuntime(26187):at android.app.ActivityThread.main(ActivityThread.java:4514)11-03 17:16:10.899:E/AndroidRuntime(26187):at java.lang.reflect.Method。 invokeNative(Native Method)11-03 17:16:10.899:E/AndroidRuntime(26187):at java.lang.reflect.Method.invoke(Method.java:511)11-03 17:16:10.899: E/Androi dRuntime(26187):at com.android.internal.os.ZygoteInit $ MethodAndArgsCaller.run(ZygoteInit.java:993) 11-03 17:16:10.899:E/AndroidRuntime(26187):at com.android。 internal.os.ZygoteInit.main(ZygoteInit.java:760)11-03 17:16:10.899:E/AndroidRuntime(26187):在 dalvik.system.NativeStart.main(本機方法)
請指導我如何解決這個問題或讓我知道你什麼時候解決這個問題?