Yugesh
Yugesh

Reputation: 4092

How to switch the image one by one through left swipe or right in android?

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

Answers (3)

Shadow
Shadow

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

PaNaVTEC
PaNaVTEC

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

Shadow
Shadow

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

Related Questions