-6

I need to implement a pinch zoom and pan to execute for same imageView. How can i to do this?

Igor Ronner
  • 1,565
  • 2
  • 14
  • 31

1 Answers1

2

You below lib :-

https://github.com/chrisbanes/PhotoView

XML

  <uk.co.senab.photoview.PhotoView
            android:id="@+id/iv_photo"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" />

JAVA

    ImageView mImageView = (ImageView) findViewById(R.id.iv_photo);

hope above lib will helps you.

duggu
  • 37,851
  • 12
  • 116
  • 113