8

On my website, which is loaded in the webview, there is a map. There are also java scripts that detects double tap for zoom, dragging etc. But is it possible to have a javascript that detects the use of pinch zoom ? there are several examples of it working on an iphone, and on my website there is a script for the pinch zoom but it is only working on iphone.....

Is it possible to get it to work on Android ?

Thanks

Roskvist
  • 1,030
  • 3
  • 14
  • 24

4 Answers4

11

When you would like to scale web content in you WebView and enable pinch and zoom, I prefer the simple android way.

webView.getSettings().setBuiltInZoomControls(true);

and you can even hide the controls if you are using API 11 or higher

webView.getSettings().setDisplayZoomControls(false)
Jesse Black
  • 7,966
  • 3
  • 34
  • 45
3

There's an open-source library called android-pinch that you can include in your project to enable pinch zoom if you switch your WebView to a WebImageView. Here's an example of usage...

// 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);
Ryan Berger
  • 9,644
  • 6
  • 44
  • 56
2

It's not exactly in a webview, but in any layout, that I wrote a piece of code for detecting pinch in an Android view.

It took me days to find out a solution for this, so I made my own custom pinch gesture detector.

You can see it in Github: http://github.com/luisfer/Neckar

Hope it helps.

luisfer
  • 603
  • 2
  • 8
  • 15
0

This excellent tutorial shows how to implement the Pinch gesture.

Ryan Berger
  • 9,644
  • 6
  • 44
  • 56
kikoso
  • 673
  • 1
  • 6
  • 17