android webView 缩放

给你的webView加入如下几行设置属性就可以实现无限制缩放了
content = (WebView) findViewById(R.id.wv_content);

content.getSettings().setSupportZoom(true);

content.getSettings().setBuiltInZoomControls(true);

content.getSettings().setUseWideViewPort(true);

猜你喜欢

转载自antwei.iteye.com/blog/2013726