我必须将Manifest中的supportRTL设置为false,但是我需要主工具栏和NavigationView为RTL(从右侧打开,带有右侧菜单图标和工具栏中的文本) 我设置了根视图的layoutDirection = rtl并添加了
Window.DecorView.LayoutDirection = Android.Views.LayoutDirection.Rtl;
在onCreate方法中,但工具栏是RTL,而NavigationView菜单项是ltr。 这是我的布局:
<?xml version="1.0" encoding="utf-8"?> <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:id="@+id/drawerLayoutID" android:layoutDirection="rtl" android:layout_height="match_parent" android:fitsSystemWindows="true"> <RelativeLayout android:background="@drawable/main_background" android:layout_width="match_parent" android:layout_height="match_parent"> <android.support.v7.widget.Toolbar android:layout_marginBottom="1dp" android:theme="@style/MyToolbarTheme" app:titleTextAppearance="@style/MyToolbarTheme" android:elevation="10dp" android:layoutDirection="rtl" android:minWidth="25px" android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/toolbar"/> </RelativeLayout> <android.support.design.widget.NavigationView android:background="#FFFFFF" app:itemTextColor="@color/Text" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_gravity="start" android:id="@+id/nav_view" app:itemIconTint="@color/Text" app:headerLayout="@layout/drawer_header" app:menu="@menu/nav_menu"> </android.support.design.widget.NavigationView> </android.support.v4.widget.DrawerLayout>
我该怎么做才能将NavigationView和工具栏设置在右边?!