在 webview android 中使用捏

发布于 2024-11-07 07:45:26 字数 488 浏览 0 评论 0原文

我有两个问题:

  • 我发现此代码在 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 change webImageView by WebView. I obtain an error in the code. how I use pinch in the 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);
    
  • 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

春风十里 2024-11-14 07:45:26

您可以通过以下 WebView 设置启用 WebView 中的缩放

mWebView.getSettings().setBuiltInZoomControls(true);

您还可以使用 ZoomDensity 设置默认缩放级别

mWebView.getSettings().setDefaultZoom(WebSettings.ZoomDensity.CLOSE);

You can enable zooming in a WebView by following WebView setting

mWebView.getSettings().setBuiltInZoomControls(true);

Also you can set the default zoom level by using ZoomDensity

mWebView.getSettings().setDefaultZoom(WebSettings.ZoomDensity.CLOSE);
皇甫轩 2024-11-14 07:45:26

Have you added the referencing library of Nikko?
http://code.google.com/p/android-pinch/wiki/PinchImageView

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文