I want to enable RTL support in my android application. I have checked this question change action bar direction to right-to-left
I have done the below things:
- Added
android:supportsRtl="true"
to the<application>
element in manifest file And Added the below function in onCreate method of MainActivity.java class.
private void forceRTLIfSupported() { if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1){ getWindow().getDecorView().setLayoutDirection(View.LAYOUT_DIRECTION_RTL); } }
But it changes the MainActivity's layout only from LTR to RTL. Now I want to change the layout of each activity of my app, how can I do that. Please help me in anyone has any idea about RTL support in all over the app.