1. 程式人生 > >Android Webview適配螢幕寬度

Android Webview適配螢幕寬度

https://blog.csdn.net/zrbcsdn/article/details/76077387

網上有很多解決方案,但是,要麼不適用(改h5),要麼影響其他h5顯示。 

下面的程式碼,親測,至少目前為止,管用。
//支援javascript  
web.getSettings().setJavaScriptEnabled(true);   
// 設定可以支援縮放   
web.getSettings().setSupportZoom(true);   
// 設定出現縮放工具   
web.getSettings().setBuiltInZoomControls(true);  
//擴大比例的縮放  
web.getSettings
().setUseWideViewPort(true); //自適應螢幕 web.getSettings().setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN); web.getSettings().setLoadWithOverviewMode(true);