2012-11-05 62 views
2

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(本機方法)

請指導我如何解決這個問題或讓我知道你什麼時候解決這個問題?

回答

0

此錯誤報告聽起來與您接受其他MIME類型(如圖像或視頻)的Facebook應用類似。

https://developers.facebook.com/bugs/384045761672099

我正在試圖得到確認,以我們的應用程序是否支持其他MIME類型,如圖像或視頻,但我最好的猜測是,我們不和只支持純文本。

您應該訂閱錯誤報告以瞭解最新消息。

相關問題