برای حفظ چپ به راست یا راست به چپ در گوشیها 2 راه ساده وجود دارد : 1- افزودن خط کد مروبطه در قسمت AndroidManifest که در اینصورت برای تمام برنامه اعمال میشود 2- افزودن خط کد مربوطه به xml مورد نظر.
اسنیپ
activity.xmlAndroidManifest+
<?xml version="1.0" encoding="utf-8"?>
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical"
android:layoutDirection="ltr"
//Here----------------- ltr left to right / rtl right to left
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.7"
android:background="#d14c25"
android:orientation="horizontal"
<Appication:
...
...
android:supportsRtl="false"
...
...