Android RTL设计中的本地化

时间:2018-04-30 07:25:15

标签: android

我正在研究android中的本地化。任何人都可以建议什么是处理阿拉伯语RTL屏幕的最佳方法。我希望设计在用户选择语言阿拉伯语时设置对齐

2 个答案:

答案 0 :(得分:1)

可以支持RTL并且像LTR一样没有设计错误

1-当您使用边距和填充和重力时使用开始或结束..不使用右或左

android:layout_marginEnd="5dp"

android:layout_marginLeft="5dp"

2- store All String In String.Xml

                android:hint="@string/weight"

                android:hint="weight"

3-它更喜欢使用 minSdkVersion 17

4 - 如果你有图像什么方向改变"像后退按钮" 使用带监视器RTL的矢量图像

enter image description here

答案 1 :(得分:0)

试试这个

 <application
        android:supportsRtl="true">
// YOUR ACTIVITY

</application>