I want to make a Gallery View with slide show and image zooming(as the default gallery in android). I started with implementing ViewFlipper. I have added ImageView to ViewFlipper in runtime. But it takes very long time to load large number of images initially. And i couldn't make image zooming. Can anyone provide good solution take make an efficient gallery view with slideshow and image zooming??
Asked
Active
Viewed 585 times
0
-
For image zooming refer this http://stackoverflow.com/questions/7704086/how-do-i-modify-touchimageview-with-double-tap-to-zoom-in-and-out/7816495#7816495. Also dont load all images at a time but load them in memory when you are going to show that particular image – ingsaurabh Dec 08 '11 at 11:28
-
@ingsaurabh Is it better way to use view flipper??? – Santhosh_pulliman Dec 08 '11 at 11:34
-
Sorry I havent worked on ViewFlipper :( what I did is override the Gesture and with animation shows that next or previous image is coming – ingsaurabh Dec 08 '11 at 11:36