在 webview android 中使用捏
我有两个问题:
我发现此代码在
webImageView
中使用捏合功能,但是当我通过WebView
更改webImageView
时。我在代码中发现错误。我如何在webview
中使用捏合功能?// 从 xml 创建 WebImageView 对象 WebImageView img = (WebImageView) findViewById(R.id.main_pic); // 在后台线程中获取图像 img.setImageFromURL("http://www.mysite.com/mypicture.jpg"); // 在图像上启用捏缩放功能 新的 PinchImageView(img);
当我在代码中添加捏合时,所有移动 android 都支持,或者您应该有一个特定的屏幕才能使其工作。
I have two questions:
I find this code to use pinch in the
webImageView
but when I changewebImageView
byWebView
. I obtain an error in the code. how I use pinch in thewebview
??// 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);
When I add pinch in my code is that supported by all the mobile android or you should have a specific screen to make it work it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过以下 WebView 设置启用 WebView 中的缩放
您还可以使用 ZoomDensity 设置默认缩放级别
You can enable zooming in a WebView by following WebView setting
Also you can set the default zoom level by using ZoomDensity
你添加了Nikko的参考库了吗?
http://code.google.com/p/android-pinch/wiki/PinchImageView
Have you added the referencing library of Nikko?
http://code.google.com/p/android-pinch/wiki/PinchImageView