0
votes
1answer
358 views

Issue in zooming an Imageview inside ViewPager

I have to implement an image gallery using view pager, which works just fine without adding zoom/shrink functionalities to it. I referred to many tutorials and SO questions regarding issue I am facing ...
1
vote
1answer
1k views

Image Zoom Issue with Universal Image Loader and View Pager

I'd like to use ImageViewZoom with Universal Image Loader in ImagePagerActivity. I am able to zoom the image, Swipe to the next image. But i am facing problem when image is in Zoom position. if ...
1
vote
0answers
371 views

Android : Implementing zooming in view paging

I need to implement paging in android in which i also want to give pinching and double tap zooming and paging on clicking of next and previous buttons. Now my problem is this if i use horizontal ...
4
votes
1answer
2k views

Android ViewPager with zoomable ImageView

I've got a ViewPager made by ImageViews implemented like this: @Override public Object instantiateItem(View collection, int position) { ImageView iv = new ImageView(ctx); if ...