-1

I want to know if I can change swiping direction of ViewPager from LTR to RTL. Please help me.

hata
  • 11,633
  • 6
  • 46
  • 69
Th He
  • 11

1 Answers1

1

this will help you

 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
            viewPager.setLayoutDirection(View.LAYOUT_DIRECTION_RTL);
    }
Beyter
  • 46
  • 2