我有两个问题:
我发现此代码在webImageView
中使用了捏,但是当我webImageView
更改WebView
时。我在代码中获得了一个错误。我如何在webview
中使用捏?
// create the WebImageView object from xml
WebImageView img = (WebImageView) findViewById(R.id.main_pic);
// fetches the image in a background thread
img.setImageFromURL("http://www.mysite.com/mypicture.jpg");
// enable pinch-zoom abilities on the image
new PinchImageView(img);
当我在我的代码中添加pinch时,所有移动android都支持,或者你应该有一个特定的屏幕才能使它工作。
答案 0 :(得分:2)
您可以按照WebView设置
启用WebView缩放mWebView.getSettings().setBuiltInZoomControls(true);
您也可以使用ZoomDensity
设置默认缩放级别mWebView.getSettings().setDefaultZoom(WebSettings.ZoomDensity.CLOSE);
答案 1 :(得分:1)