riku
2020-08-21 0328eab9276e57487eb2cfff31a945a01dd8c73a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?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>