-
拉丁的传说
就是下面几句代码:contentWeb = (WebView) findViewById(R.id.notice_content_content);WebSettings webSettings= contentWeb.getSettings(); // webView: 类WebView的实例webSettings.setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN); //设置自适应
-
繁星coding
设置webview为满屏模式settings.setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN);在html里设置图片宽高100%应该就好了
-
一只萌萌小番薯
WebSettings ws = tv.getSettings();//html的图片就会以单列显示就不会变形占了别的位置ws.setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN);//让缩放显示的最小值为起始webView.setInitialScale(5);// 设置支持缩放webSettings.setSupportZoom(true);// 设置缩放工具的显示webSettings.setBuiltInZoomControls(true);