所以我发布了关于避免WebView内存泄漏的帖子,建议使用webview容器,然后以编程方式在活动代码中添加/删除容器中的webview: Memory leak in WebView
但是,当点击提示选择列表的html元素时,我遇到了以下崩溃(例如日期/月份下拉菜单)
W/dalvikvm(17767): threadid=1: thread exiting with uncaught exception (group=0x4001d5a0)
W/WindowManager(129): Attempted to add window with non-application token WindowToken{4094b730 token=null}. Aborting.
FATAL EXCEPTION: main
android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application
android.view.ViewRoot.setView(ViewRoot.java:561)
android.view.WindowManagerImpl.addView(WindowManagerImpl.java:177)
android.view.WindowManagerImpl.addView(WindowManagerImpl.java:91)
android.app.Dialog.show(Dialog.java:265)
android.webkit.WebView$InvokeListBox.run(WebView.java:9170)
android.os.Handler.handleCallback(Handler.java:587)
android.os.Handler.dispatchMessage(Handler.java:92)
android.os.Looper.loop(Looper.java:150)
android.app.ActivityThread.main(ActivityThread.java:4263)
java.lang.reflect.Method.invokeNative(Native Method)
java.lang.reflect.Method.invoke(Method.java:507)
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
dalvik.system.NativeStart.main(Native Method)
我的布局中有以下内容:
FrameLayout
android:id="@+id/webview_container"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/titlebar">
/FrameLayout>
我在onCreate()中有以下内容:
mWebViewContainer = (FrameLayout)findViewById(R.id.webview_container);
mWebView = new WebView(getApplicationContext());
mWebViewContainer.addView(mWebView);
mWebView.setWebChromeClient(new WebChromeClient());
我还设置了一个WebViewClient。
我已经验证mWebView.getWindowToken()确实返回非空值。
关于为什么会出现此问题的任何想法?
编辑: 我做了一些实验和环顾四周,但仍然没有解决这个问题。如果我将webview直接放在布局本身中,一切都运行正常。但我不想这样做,因为我希望能够动态交换webviews。
答案 0 :(得分:13)
问题在于:
mWebView.setWebChromeClient(new WebChromeClient());
离开活动后,WebChromeClient中的某些回调可能会在容器活动被销毁时尝试打开对话框。
这是一个适合我的解决方案,只需在活动的onDestroy()中添加mWebView.destroy()
@Override
public void onDestroy() {
super.onDestroy();
if (mWebView != null)
mWebView.destroy();
}
答案 1 :(得分:9)
创建WebView时,您当前正在使用应用程序的上下文。
您应该使用Activity的上下文。要解决此问题,请在创建WebView时将getApplicationContext()
替换为this
。