<?xml version="1.0" encoding="utf-8"?>
|
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:id="@+id/DL_analysis"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:background="@color/lightGray"
|
tools:openDrawer="end">
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical">
|
<FrameLayout
|
android:id="@+id/FL_analysis"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
</FrameLayout>
|
<ImageView
|
android:id="@+id/IV_menu"
|
android:layout_width="20dp"
|
android:layout_height="52dp"
|
android:src="@drawable/icon_patrol_back"
|
android:background="@drawable/shape_blue"
|
android:layout_centerVertical="true"
|
android:layout_alignParentRight="true"/>
|
</RelativeLayout>
|
|
<android.support.design.widget.NavigationView
|
android:id="@+id/NV_analysis"
|
android:layout_width="wrap_content"
|
android:layout_height="match_parent"
|
android:layout_gravity="end"
|
app:headerLayout="@layout/drawer_header_analysis"
|
app:menu="@menu/menu_analysis" >
|
</android.support.design.widget.NavigationView>
|
</android.support.v4.widget.DrawerLayout>
|