当手机语言发生变化时,请勿更改设计

时间:2017-08-23 21:03:14

标签: android right-to-left

你好,我是一个新的Android开发人员,我创建了一个Android应用程序。 当电话的语言是英语时,一切都很好但是当我将其改为从右到左的语言(例如波斯语或阿拉伯语)时,视图的位置会发生变化。我该怎么办?谢谢。

1 个答案:

答案 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>