我的应用程序中有两种语言,英语和乌尔都语。当语言更改为乌尔都语时,主页向上按钮会改变方向,如下所示:
请帮助我如何解决此问题。我希望箭头方向在左侧
要支持从右到左的屏幕布局,您必须android:supportsRtl="true"
在您manifest.xml
的 例如:
<application
android:name=".Application"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
>
写完这个标签后,右边会出现箭头按钮,左边会出现其他图标。
有关更多信息,请参阅这篇文章。
没有问题并且支持Rtl。因为如果
android:supportsRtl="true"
然后从右侧查看显示。
如果为假,那么它将按原样显示。
我可以有你在那里使用的清单应用程序标签和样式吗?