我想在某些网站的webview中加载网址时在webview的底部\页脚中获得不需要的空格
例如:5000像素高度或更高的5000像素高度webview使
请告诉我如何工作?
this image is my problem in webview
我的XML是:
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
android:visibility="visible" />
我的代码是:
getActivity().runOnUiThread(new Runnable() {
@Override
public void run() {
wv.clearCache(true);
wv.getSettings().setJavaScriptEnabled(true);
wv.setInitialScale(1);
wv.getSettings().setUserAgentString("Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.4) Gecko/20100101 Firefox/4.0");
wv.getSettings().setLoadWithOverviewMode(true);
wv.getSettings().setUseWideViewPort(true);
wv.getSettings().setAllowFileAccess(true);
wv.loadUrl(url);
wv.setWebViewClient(new Webview1());
wv.loadUrl("javascript:setResolution(x,y,orientation)");
wv.loadUrl("javascript:window.HTMLOUT.getContentHeight(document.getElementsByTagName('html')[0].scrollHeight);");
}
});
我在网上搜索但没有找到这个问题
由于
答案 0 :(得分:0)
位于网址的网页可能有问题吗?