-6

I want to crate at my android app with viewpager star right to left.how i can do it pleases help me anyone.

     Pleases help me with simple code
Sunn
  • 1
  • 3
  • you should post some code that you have tried so far – warunapww May 29 '15 at 06:19
  • http://stackoverflow.com/questions/22836504/viewpager-for-screen-slides-from-right-to-left – almightyGOSU May 29 '15 at 06:19
  • possible duplicate of [how to reverse the direction of viewPager to left to right order?](http://stackoverflow.com/questions/13489723/how-to-reverse-the-direction-of-viewpager-to-left-to-right-order) – paulina_glab May 29 '15 at 06:35

1 Answers1

0

Try this,

you can set current page to the last page using viewPager.setCurrentItem(). Then it will swipe left to right .. or right to left:)

 viewPager.setCurrentItem(ViewPagerSize);

and this will make user swipe right to left

or

ViewPager.setCurrentItem(lastposition);
Tufan
  • 3,384
  • 4
  • 32
  • 53