当设备改变方向时出现此错误:
Error: WebView.destroy() called while still attached
使用此代码:
protected void onDestroy()
{
if (adView != null)
{
adView.destroy();
}
}
这是什么原因?如何避免此错误?
当设备改变方向时出现此错误:
Error: WebView.destroy() called while still attached
使用此代码:
protected void onDestroy()
{
if (adView != null)
{
adView.destroy();
}
}
这是什么原因?如何避免此错误?
您首先需要分离 Webview:
webViewPlaceholder.removeView(myWebView);
myWebView.removeAllViews();
myWebView.destroy();
那是为我做的。
为避免该错误,您只需在销毁广告之前删除所有视图。
@Override
public void onDestroy()
{
if (adView != null)
{
adView.removeAllViews();
adView.destroy();
}
super.onDestroy();
}
@Override
public void onDetachedFromWindow() {
super.onDetachedFromWindow();
if (mWebView != null) {
mWebView.destroy();
}
}
根据我的测试,这个问题在 AdMob SDK v6.4.1 和至少在 Android v4.2.2+ 中被发现。在测试https://developers.google.com/mobile-ads-sdk/docs/admob/fundamentals#android中提到的 AdMob 示例应用程序时(直接链接是http://google-mobile-dev.googlecode.com/ files/Android_XML.zip ),关闭示例屏幕时会出现问题。
我的解决方法是:
@Override
public void onDestroy()
{
// Destroy the AdView.
if (adView != null)
{
final ViewGroup viewGroup = (ViewGroup) adView.getParent();
if (viewGroup != null)
{
viewGroup.removeView(adView);
}
adView.destroy();
}
super.onDestroy();
}
希望这对其他人有所帮助,并且 AdMob 将很快解决这个烦人的问题。
对于您没有收到此错误,您需要有一个父布局,例如:RelativeLayout 并删除可能已在您的 layoutWebView.xml 上定义的 WebView 组件。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webviewRelativeLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/headerAlarmsWebViewTxt"
android:layout_marginBottom="0dip"
android:hapticFeedbackEnabled="true"
android:overScrollMode="never"
android:scrollbarAlwaysDrawVerticalTrack="false"
android:scrollbars="none" />
</RelativeLayout>
然后将其分配给实例变量,例如:
_layout = (RelativeLayout) findViewById(R.id.webviewRelativeLayout);
webView = (WebView) findViewById(R.id.webView1);
在 Destroy 上做这样的事情:
@Override
protected void onDestroy() {
super.onDestroy();
_layout.removeView(webView);
webView.setFocusable(true);
webView.removeAllViews();
webView.clearHistory();
webView.destroy();
}