Override right-to-left in layouts

214 Views Asked by At

I have developed an application where everything is laid out left-to-right in its layouts and views. The issue is when I change the language in settings to Persian, a right-to-left language, everything changes to right-to-left. How can I override this change to prevent it from happening?

3

There are 3 best solutions below

0
On BEST ANSWER

as mentioned in this post: Override supportsRtl in one of the layouts

you have to set

android:layoutDirection="ltr"
2
On

you simply need to write this line inside the application Tag of your projects manifest

 android:supportsRtl="false"
0
On

You can specify android:toLeftOf instead of android:toStartOf, and so forth if you are using RelativeLayout. Then the view is forced to the left regardless of locale