要使用WebView不造成内存泄漏,首先应该做的就是不能在xml中定义webview节点,而是在需要的时候动态生成。即:可以在使用WebView的地方放置一个LinearLayout类似ViewGroup的节点,然后在要使用WebView的时候,动态生成即:
1
2
3
|
WebView mWebView = new WebView(getApplicationgContext()); LinearLayout mll = findViewById(R.id.xxx); mll.addView(mWebView); |
然后一定要在onDestroy()方法中显式的调用
1
2
3
4
5
|
protected void onDestroy() { super .onDestroy(); mWebView.removeAllViews(); mWebView.destroy() } |
注意: new WebView(getApplicationgContext()) ;必须传入ApplicationContext如果传入Activity的Context的话,对内存的引用会一直被保持着。有人用这个方法解决了当Activity被消除后依然保持引用的问题。但是你会发现,如果你需要在WebView中打开链接或者你打开的页面带有flash,获得你的WebView想弹出一个dialog,都会导致从ApplicationContext到ActivityContext的强制类型转换错误,从而导致你应用崩溃。这是因为在加载flash的时候,系统会首先把你的WebView作为父控件,然后在该控件上绘制flash,他想找一个Activity的Context来绘制他,但是你传入的是ApplicationContext。后果,你可以晓得了哈
于是大牛们就Activity销毁后还保持引用这个问题,提供了另一种解决办法:既然你不能给我删除引用,那么我就自己来吧。于是下面的这种方法诞生了:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
public void setConfigCallback(WindowManager windowManager) { try { Field field = WebView. class .getDeclaredField( "mWebViewCore" ); field = field.getType().getDeclaredField( "mBrowserFrame" ); field = field.getType().getDeclaredField( "sConfigCallback" ); field.setAccessible( true ); Object configCallback = field.get( null ); if ( null == configCallback) { return ; } field = field.getType().getDeclaredField( "mWindowManager" ); field.setAccessible( true ); field.set(configCallback, windowManager); } catch (Exception e) { } } |
下载说明
☉本站所有源码和资源均由站长亲自测试-绝对保证都可以架设,运营!
☉如源码和资源有损坏或所有链接均不能下载,请告知管理员,
☉本站软件和源码大部分为站长独资,资源购买和收集,放心下载!
☉唯一站长QQ:1004003180 [人格担保-本站注重诚信!]
☉购买建议E-mail:1004003180@qq.com 源码收购 E-mail:1004003180@qq.com
☉本站文件解压密码 【文章内都自带解压密码,每个密码不同!】