0

I have a View pager .
I use Image View in it to display images.
Image is scrolling perfectly but I am not able to pan and zoom the images.
How can i do this?
Is it possible to do using webview? I tried to do but its not zooming correctly. the page zoom but image is not zooming

user1618951
  • 53
  • 1
  • 1
  • 6
  • About using WebView, try this (Andro Selva's answer): http://stackoverflow.com/questions/6758847/pinch-zoom-in-android-for-an-imageview – Heejin Sep 22 '12 at 10:59

1 Answers1

0

Android image view does not support pinch and zoom as default.

Use any custom view supporting pinch and zoom or implement yourself using ScaleGestureDetector.

Heejin
  • 4,463
  • 3
  • 26
  • 30