how to make my viewpager swipe from right to left

前端 未结 13 731
一整个雨季
一整个雨季 2020-12-05 14:42

I have a viewpager and it contains some information but it lets me swipe the pages from left to right how can I make it swipe from left to right which means change its direc

13条回答
  •  萌比男神i
    2020-12-05 15:19

    I totally understand that the question is answered perfectly; but if you're using RTL language; for instance if you have a book that you want to show in ViewPager; then besides the answer, you might also consider to flip the pages over to get the right page; to do that modify your ViewPager adapter's getItem() method

    @Override
    public Fragment getItem(int position) {
        return SomeFragment.newInstance(N_PAGES - position - 1); // to filp the pages
    }
    

提交回复
热议问题