WebView 加载H5代码 :
webView.loadDataWithBaseURL(null,"h5 代码...","text/html" , "utf-8",null);
如果使用
webView.loadData("h5 代码...","text/html" , "utf-8");
会出现乱码现象。、
Webview 自适应手机屏幕大小:
WebSettings webSettings = tv_consult_content_web.getSettings(); webSettings.setUseWideViewPort(true); webSettings.setLoadWithOverviewMode(true); webSettings.setLayoutAlgorithm(WebSettings.LayoutAlgorithm.NARROW_COLUMNS);