Android Webview与ScrollView的滚动兼容及留白处理的方法
本文介绍了webview与scrollview的滚动兼容及留白处理,分享给大家,具体如下:
背景
开发中我们经常会遇到使用网页来显示图文内容,而且往往我们会遇到webview嵌套在scrollview的这种情况,这就开始让人蛋疼了!“为嘛,我的webview加载出来的网页只显示很小一点,其他都不显示了?” ”当我重新刷新页面后,为什么webview会出现留白的情况?“ ----------------- 天啊,难道就不能好好的吗?!
为了解决项目中这些蛋疼的问题,试过不少方法,网上有说是网页中使用了不合理的overflow,的确,经证实使用不合理的overflow的确会造成网页加载后在嵌套在scrollview的webview只会显示很小的高度,那体验是相当的尴尬。合理使用overflow即可处理这个问题,但是webview留白又如何处理呢?问题先放这儿,我们先说说如何在xml布局中放置webview并设置他的属性。
层层递进,先练基本功
xml中webview嵌套在scrollview中:
<scrollview android:layout_width="match_parent" android:layout_height="match_parent"> <linearlayout android:descendantfocusability="blocksdescendants" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <com.xxxx.nowraplistview android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"/> <webview android:layout_width="match_parent" android:layout_height="wrap_content" /> </linearlayout> </scrollview>
其中webview要的高度要设置为:wrap_content, 如有必要可设置scrollview第一个子容器的这个属性:
android:descendantfocusability="blocksdescendants"
发现问题,问题是如何造成的
我们使用webview加载网页,网页可能在我们需要的时候会要求我们刷新网页或者加载新的链接,这时候问题就显现了。由于网页页面加载内容的长度,或者ajax请求延迟,造成webview只能不断的增加高度,而当网页高度变小时,webview高度却不能自适应了,那么只能由我们手动的搞些事情了!
解决问题,解决留白,刻不容缓
1、重载webviewclient,重写onpagefinished方法。
inner class xwalkwebclient : webviewclient() { override fun onpagestarted(view: webview?, url: string?, favicon: bitmap?) { super.onpagestarted(view, url, favicon) ispageloadsuccess = true } override fun onpagefinished(view: webview?, url: string?) { super.onpagefinished(view, url) view?.loadurl("javascript:window.myapp.resize(document.body.getboundingclientrect().bottom);") //此处调用了一个注入的js方法用来重载webview高度,可解决初始加载网页的问题,① } }
2、js注入,初始化注入方法
webbrowser?.addjavascriptinterface(myappjavascripthandler(), "myapp")
inner class myappjavascripthandler { @javascriptinterface fun resize(documentbodyheight: int) { if (isallowrelayoutbrowser) { (context as? activity?)?.runonuithread { viewutil.setviewlayoutparams<framelayout.layoutparams>(webbrowser!!, { it.width = context.resources.displaymetrics.widthpixels it.height = (documentbodyheight * context.resources.displaymetrics.density).toint() }) //重写webview的高度, ② } } } }
网页端也需要在数据加载完成后调用这个js注入方法
if(window.myapp.resize){ window.myapp.resize(document.body.getboundingclientrect().bottom); }
备注、解释:
①. document.body.getboundingclientrect().bottom: 网页下边距离页面上边的距离
②. viewutil.setviewlayoutparams....方法的实现
/** * 配置控件的布局属性 * @param view * @param func 处理布局属性的回调方法 */ @suppress("unchecked_cast") @jvmstatic fun <t : viewgroup.layoutparams> setviewlayoutparams(view: view, func: (t) -> unit) = with(this) { val lp: t = view.layoutparams as t func.invoke(lp) view.layoutparams = lp }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 哇塞!原来404还能这么玩!
下一篇: php FPDF类库应用实现代码