Skip to content
Snippets Groups Projects
Select Git revision
  • 68b6d736dbfe4df4d0988f78c0f5e82fd951cfe9
  • master default
2 results

activity_adm_home.xml

Blame
  • activity_adm_home.xml 983 B
    <?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:fitsSystemWindows="true"
        tools:openDrawer="start">
    
        <include
            layout="@layout/app_bar_adm_home"
            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="start"
            android:fitsSystemWindows="true"
            app:headerLayout="@layout/nav_header_adm_home"
            app:menu="@menu/activity_adm_home_drawer" />
    
    </android.support.v4.widget.DrawerLayout>