1

I am implementing pinch-zoom on ImageView in my App.I am having an Activity which is holding Gallery view and I am showing my ImageView inside gallery.Independently pich-zoom is working and I am able to handle gallery fling also when image is in normal size But my problem is: How to fling when Image is in some zoom level.

Tofeeq Ahmad
  • 11,935
  • 4
  • 61
  • 87
Abhay Singh
  • 11
  • 1
  • 6
  • refer this http://stackoverflow.com/questions/7582833/how-to-enable-the-two-finger-zoom-in-out-feature-for-an-image-in-android/7582999#7582999 – Aerrow May 10 '12 at 18:33
  • Did any answer help you to solve your problem? if yes then mark it as answer – Tofeeq Ahmad Sep 05 '13 at 10:52

2 Answers2

1

you can follow this links that adds panning, zoom, and boundary detection to ImageView.

How can I get zoom functionality for images?

Community
  • 1
  • 1
Furqi
  • 2,403
  • 1
  • 26
  • 32
0

Generally Gallery include Two functionality

  • Zooming current Image showing to User
  • And swiping to next/previous Image

Issue is when we zoom Image inside a Gallery, it should disable the swipe view. It should only swipe when Zoom Image Drag reach to end.

This post Tell about how to zoom an Image Perfectly. Now you have to take one ViewPager and integrate both

Tofeeq Ahmad
  • 11,935
  • 4
  • 61
  • 87