image view zoom with finger spread in android like gallery images
I want to zoom images like gallery images, where we开发者_运维问答 can zoom in and zoom out the images by finger spread and shrink. How to do it? Can any body help?
Thanks & Reagrds
What you're essentially asking for is multi-touch zoom for an image, right? If so, this should be the answer you're looking for:
How can I get zoom functionality for images?
I made a ZoomableImageView for this thing as I could not get anything decent. Source is here: https://github.com/a85/WebComicViewer/blob/master/src/com/rickreation/ui/ZoomableImageView.java
It supports pinch and zoom, double tap zoom in and out and sets proper limits. You might have to tweak it a bit though. Let me know if you have any problems.
精彩评论