trying to set the layout elements to be RTL ordered
in 4.2 and above the line: layoutDirection=\"rtl\" and in the manifest: android:supportsRtl=\"true
layoutDirection=\"rtl\"
android:supportsRtl=\"true
Just use ViewCompat using android.support.v4.view to do it.
ViewCompat.setLayoutDirection(findViewById(R.id.my_view), ViewCompat.LAYOUT_DIRECTION_RTL);