当语言改变时,Home up按钮改变其方向

时间:2016-09-01 13:23:57

标签: android android-layout urdu

我的应用程序中有两种语言,英语和乌尔都语。当语言更改为Urdu home up按钮时,会改变其方向:

enter image description here

请帮助我如何解决此问题。我希望箭头方向位于左侧

2 个答案:

答案 0 :(得分:0)

要支持从右到左的屏幕布局,您必须在android:supportsRtl="true"manifest.xml行,例如:

<application
        android:name=".Application"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
>

写完此标签后,右侧会出现箭头按钮,左侧会显示其他图标。

有关详细信息,请参阅this发布。

答案 1 :(得分:0)

没有问题和supportRtl。 因为如果

android:supportsRtl="true"

然后从右侧查看显示。

如果为false,则表示原样显示。

我可以使用您在那里使用的清单应用程序标签和样式吗?

相关问题