Сделать NavigationView и панель инструментов RTL - PullRequest
0 голосов
/ 20 февраля 2019

Я должен установить для SupportRTL в Manifest значение false, но мне нужно, чтобы моя основная панель инструментов и NavigationView были RTL (открываются справа с правым значком меню и текстом на панели инструментов). Я установил макет корневого представления layoutDirection = rtl и добавил

Window.DecorView.LayoutDirection = Android.Views.LayoutDirection.Rtl;

в методе onCreate, но на панели инструментов нет элементов RTL и навигационного меню.это мой макет:

<?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 и панель инструментов вправо?!

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...