I am managing RTL contents by implementing setRotationY for recyclerview and viewpagers but it seems that it is creating scroll/swipe issues in only devices with API 28 othe
if(Build.VERSION.SDK_INT >= 28) {
// Call some material design APIs here
recyclerView.setLayoutDirection(View.LAYOUT_DIRECTION_LOCALE);
} else {
// Implement this feature without material design
recyclerView.setRotationY(180);
}