我希望我的应用程序支持RTL。
我已将android:supportsRtl="true"
添加到清单中的Application
元素中,它看起来很棒。
但是,对于LTR / RTL,有一些布局应保持不变。我知道我可以将布局文件复制到layout-ldrtl
目录中,但是如果可能的话,我更希望只复制一份资源。
答案 0 :(得分:1)
要强制对布局进行LTR,可以将android:layoutDirection="ltr"
添加到布局XML标签中,如下所示:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layoutDirection="ltr"
...>