将工具栏布局方向设置为RTL,使用`supportsRtl =“false”`

时间:2017-10-09 16:04:07

标签: android layout android-toolbar right-to-left

我有一个特殊的情况,我无法找到解决方案。我试图强制在RTL中布置视图,但其中一个限制是清单中supportsRtl必须为false

<!-- AndroidManifest.xml -->
<application android:supportsRtl="false">

<!-- layout/activity.xml -->
<android.support.v7.widget.Toolbar
    android:layoutDirection="rtl"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

我遇到的问题是android:layoutDirectionView#setLayoutDirection(int)被忽略,除非supportsRtl="true"。如果没有制作我自己的Toolbar,还有哪些其他方法可以解决这个问题?

0 个答案:

没有答案