答案 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,则表示原样显示。
我可以使用您在那里使用的清单应用程序标签和样式吗?