從網上找了各類博客代碼拿來都不行,剛從同事那裏整來幾句代碼,放上竟然好用了,代碼以下html
WebSettings settings = webView.getSettings(); settings.setBuiltInZoomControls(false);//設置縮放 settings.setJavaScriptEnabled(true); settings.setBuiltInZoomControls(false);// 設置出現縮放工具 webView.setWebChromeClient(new WebChromeClient()); webView.setWebViewClient(new WebViewClient());
webView.loadDataWithBaseURL("網址", "數據", "text/html", "utf-8", null);
今天又進行了測試,由於後臺的圖片大小不一,因此致使顯示仍是有點問題,百度了下,在html代碼上進行處理web
html = "<head><style>img{max-width:100%;height:auto;}</style></head>" + html; //html代碼加上圖片寬度填滿 webView.loadDataWithBaseURL(Utils.BaseUrl, html, "text/html", "utf-8", null);
目前能夠了沒發現有什麼問題工具