Reputation: 4092
I have bunch of images.i want show all images one by one through swipe left or right.Can any one help me.
Upvotes: 1
Views: 2076
Reputation: 6899
Then you can use page curl effects for images.
You can turn right or left. Hope this might helps you.
http://code.google.com/p/android-page-curl/
Upvotes: 1
Reputation: 2503
For apis < 16 you can use the Gallery widgvet (http://developer.android.com/reference/android/widget/Gallery.html)
Another solution is to use a Viewpager, please check this post: Gallery of images using ViewPager + zoom in ImageViews
Upvotes: 0
Reputation: 6899
Use ViewPagerIndicator.It works well for your requirement.
The best example is there.Jake Wharton's View Pager indicator.
https://github.com/JakeWharton/Android-ViewPagerIndicator
Upvotes: 1