继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

用WebView显示网页

kala16
关注TA
已关注
手记 260
粉丝 18
获赞 134

用WebView显示网页非常方便,缺点是速度比较慢,对webView属性也要设置一下,否则可能会出现宽度不匹配等问题。代码并不复杂,如下:

private WebView wv_statistics_html;@TargetApi(Build.VERSION_CODES.HONEYCOMB)@Overrideprotected void initViews(Bundle savedInstanceState) {    requestWindowFeature(Window.FEATURE_NO_TITLE);    setContentView(R.layout.activity_statistics_html);    wv_statistics_html = (WebView) findViewById(R.id.wv_statistics_html);    WebSettings webSettings = wv_statistics_html.getSettings();    webSettings.setJavaScriptEnabled(true);    webSettings.setJavaScriptEnabled(true);    webSettings.setJavaScriptCanOpenWindowsAutomatically(true);    webSettings.setUseWideViewPort(true);    webSettings.setLayoutAlgorithm(WebSettings.LayoutAlgorithm.SINGLE_COLUMN);    webSettings.setDisplayZoomControls(false);    webSettings.setJavaScriptEnabled(true); // 设置支持javascript脚本    webSettings.setAllowFileAccess(true); // 允许访问文件    webSettings.setBuiltInZoomControls(true); // 设置显示缩放按钮    webSettings.setSupportZoom(true); // 支持缩放    webSettings.setLoadWithOverviewMode(true);    wv_statistics_html.loadUrl("http://www.pipaw.com/ttxqtxb/168418.html");    wv_statistics_html.setWebViewClient(new WebViewClient() {        @Override        public boolean shouldOverrideUrlLoading(WebView view, String url) {            // TODO Auto-generated method stub            //返回值是true的时候控制去WebView打开,为false调用系统浏览器或第三方浏览器            view.loadUrl(url);            return true;        }    });}


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP