Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Right to left navigation drawer menu using android design support library

I'm using the android design support library and i want to know how can i have a right to left navigation drawer,I set the gravity to right but only the navigation drawer itself moved to right, I want to know how can i put the menu items on the right side ? Navigation View :

    <android.support.design.widget.NavigationView
    android:id="@+id/navigation_view"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="right"
    android:foregroundGravity="right"
    app:headerLayout="@layout/header"
    app:menu="@menu/drawer" />

Drawer layout :

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity"
android:layout_gravity="right">

menu :

<menu xmlns:android="http://schemas.android.com/apk/res/android">
<group android:checkableBehavior="single">
    <item
        android:id="@+id/one"
        android:checked="false"
        android:icon="@drawable/account"
        android:title="First Item"></item>

    <item
        android:id="@+id/two"
        android:checked="false"
        android:icon="@drawable/filter"
        android:title="Second Item"></item>

    <item
        android:id="@+id/three"
        android:checked="false"
        android:icon="@drawable/human"
        android:title="Third Item"></item>
</group>

and this is my drawer now : Drawer

thanks in advance

like image 373
Ali Sadeghi Avatar asked Jan 07 '23 05:01

Ali Sadeghi


1 Answers

I was able to get this to work by adding having the DrawerLayout as below:

<?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"
     xmlns:tools="http://schemas.android.com/tools"      
     android:id="@+id/drawer_layout"
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:gravity="right"
     android:fitsSystemWindows="true" 
     tools:openDrawer="right">

     <include 
         layout="@layout/app_bar_main" 
         android:layout_width="match_parent"
         android:layout_height="match_parent" />

    <android.support.design.widget.NavigationView 
         android:id="@+id/nav_view"
         android:layout_width="wrap_content" 
         android:layout_height="match_parent"
         android:layout_gravity="right" 
         android:fitsSystemWindows="true"
         app:headerLayout="@layout/nav_header_main"       
         app:menu="@menu/activity_main_drawer" />
</android.support.v4.widget.DrawerLayout>

and then add to your Activity before setContentView(R.layout.main_activity);:

    if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
        getWindow().getDecorView().setLayoutDirection(View.LAYOUT_DIRECTION_RTL);
    }

This is only possible on API 17+

Result: enter image description here

like image 174
kandroidj Avatar answered Jan 31 '23 10:01

kandroidj