I created a ViewPager and everything is working fine, however I want to have a previous next button outside of ViewPager which can be used to navigate inside ViewPager. How can I go to next Item on ViewPager without swiping manually?
As blessenm answered viewpager.setCurrentItem(int index)
is the way to go.
A complete implementation just for completeness:
public void MoveNext(View view) { //it doesn't matter if you're already in the last item pager.setCurrentItem(pager.getCurrentItem() + 1); } public void MovePrevious(View view) { //it doesn't matter if you're already in the first item pager.setCurrentItem(pager.getCurrentItem() - 1); }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With