我开发了一个应用程序,允许使用facebook sdk在Facebook墙上发布数据。我已经在LG optimus等其他一些手机上进行了测试,但是当应用程序在摩托罗拉机器人上运行时,它有时会崩溃。
当我点击上下文菜单中的分享Facebook按钮时,应用程序崩溃。
我用Google搜索并发现了这么多
使用网络套件时Droid手机存在问题。
facebook sdk报道了同样的问题 https://github.com/facebook/facebook-android-sdk/issues/82?authenticity_token=a321076df454835ad9c481d6fa73a3ea8cad1ceb
同样,大多数人都说在使用motorola droid期间发生了异常。
这是堆栈跟踪:
java.lang.NullPointerException
at android.webkit.WebView.onWindowFocusChanged(WebView.java:4177)
at android.view.View.dispatchWindowFocusChanged(View.java:3788)
at android.view.ViewGroup.dispatchWindowFocusChanged(ViewGroup.java:658)
at android.view.ViewGroup.dispatchWindowFocusChanged(ViewGroup.java:662)
at android.view.ViewGroup.dispatchWindowFocusChanged(ViewGroup.java:662)
at android.view.ViewGroup.dispatchWindowFocusChanged(ViewGroup.java:662)
at android.view.ViewRoot.handleMessage(ViewRoot.java:1921)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:123)
at android.app.ActivityThread.main(ActivityThread.java:4627)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:521)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
at dalvik.system.NativeStart.main(Native Method)
有人有解决方案或解决方法吗?
编辑:这似乎也发生在HTC Incredible上。
答案 0 :(得分:7)
有一个解决方法,明确提到摩托罗拉Droid你可以找到原始发布在:
Workaround for Null Pointer Excpetion in WebView.onWindowFocusChanged
创建自定义webclass:
public class CustomWebView extends WebView {
public CustomWebView(Context context) {
super(context);
}
public CustomWebView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public CustomWebView(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
public void onWindowFocusChanged(boolean hasWindowFocus) {
try{
super.onWindowFocusChanged(hasWindowFocus);
}catch(NullPointerException e){
// Catch null pointer exception
}
}
}
现在打开facebook提供的FbDialog.java并修改创建webview的行以使用CustomWebView子类,如下所示
WebView view = new CustomWebView(getContext());