I'm displaying an image on full screen now i want to zoom it in or out. Any one guide on how I can implement multi touch image zooming?

I am using the 2.1 sdk version.

link|improve this question

1  
need to provide the version of android you're targeting – jcollum Jun 16 '10 at 16:12
see this easy solution androidtrainningcenter.blogspot.in/2012/04/… – Sameer Apr 10 at 9:49
feedback

5 Answers

There is the possibility to use a webview to display a local file. The Webview has integrated multitouch zooming. Have a look at my question regarding this topic.

link|improve this answer
facebook app for 2.1 and 1.5 using zooming buttons. i want to use that.. – UMAR Jun 17 '10 at 9:32
means zoomcontrols not the webview. – UMAR Jun 17 '10 at 9:45
sorry I can't understand your comments. If you want multitouch zooming and zoom controls for an Image you can show the image in an webview this will add multitouch zooming for the image and also show the zoom controls after the first touch event on the view – Janusz Jun 17 '10 at 10:13
A web view is the best way to do it. – gregm Oct 26 '10 at 21:19
feedback
up vote 6 down vote accepted

http://www.zdnet.com/blog/burnette/how-to-use-multi-touch-in-android-2-part-6-implementing-the-pinch-zoom-gesture/1847

link|improve this answer
It's very good example that worked ! thanks – Kariyachan Feb 26 '11 at 5:03
6  
Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – Bill the Lizard Jun 22 '11 at 12:39
feedback

A recent post on the Android Developers Blog includes an example that does exactly what you ask. Unfortunately, it relies upon ScaleGestureDetecter which makes its first appearance in Froyo.

link|improve this answer
b ut it is for 2.2 sdk version – UMAR Jun 17 '10 at 6:43
1  
is there any way to implement it through 2.1? – UMAR Jun 17 '10 at 6:44
feedback

Have you tried using the intent "android.intent.action.VIEW" and letting the phone's built in image viewer display your image? It will probably use multi-touch controls if the phone supports it.

http://developer.android.com/reference/android/content/Intent.html#ACTION_VIEW

link|improve this answer
Simple solution. +1. – Maurice Nov 8 '11 at 2:07
feedback

I have a working implementation for 2.1+

WebView solution caused problems for me on 4.0.x (lot's of weird white spaces appearing)

https://github.com/jasonpolites/gesture-imageview

Might be useful for someone...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.