你好,我是一个新的Android开发人员,我创建了一个Android应用程序。 当电话的语言是英语时,一切都很好但是当我将其改为从右到左的语言(例如波斯语或阿拉伯语)时,视图的位置会发生变化。我该怎么办?谢谢。
答案 0 :(得分:1)
在AndroidManifest.xml
中,将以下行添加到application
节点的属性中:
android:supportsRtl="false"
您的最终代码应如下所示
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.app">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="false"
android:theme="@style/AppTheme">
...
</application>
</manifest>