I want to know if I can change swiping direction of ViewPager from LTR to RTL. Please help me.
Asked
Active
Viewed 157 times
1 Answers
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