0

How do I make a photo finger-zoomable on a android device? Is there a simple way, or is it complicated? But I dont want zoom buttons. I want it like a phonebrowser, when you take your fingers and drag them from each other on the phone, it will zoom in. How do I do?? I have searched everywhere. If there no way, can I just have two buttons, - and +. If I click one, the "imageview" change size?

How do I make a photo finger-zoomable on a android device? Is there a simple way, or is it complicated? But I dont want zoom buttons. I want it like a phonebrowser, when you take your fingers and drag them from each other on the phone, it will zoom in. How do I do?? I have searched everywhere. If there no way, can I just have two buttons, - and +. If I click one, the "imageview" change size?

SlowDeepCoder
  • 864
  • 3
  • 11
  • 27
  • possible duplicate of [How can I get zoom functionality for images?](http://stackoverflow.com/questions/2537238/how-can-i-get-zoom-functionality-for-images) – Kurtis Nusbaum Nov 07 '11 at 01:51

2 Answers2

1

The simplest way is to load your image on a WebView and let it do all the work

webView.loadUrl("file://...")
Reno
  • 33,594
  • 11
  • 89
  • 102