Advertisement
uopspop

Untitled

Oct 9th, 2016
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.95 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:id="@+id/drawer_layout"
  6.    android:layout_width="match_parent"
  7.    android:layout_height="match_parent"
  8.    tools:context="com.example.sam.drawerlayoutprac.MainActivity">
  9.  
  10.     <FrameLayout
  11.        android:id="@+id/drawer_layout_body"
  12.        android:layout_width="match_parent"
  13.        android:layout_height="wrap_content"/>
  14.     <android.support.design.widget.NavigationView
  15.        android:id="@+id/navigation_view"
  16.        android:layout_width="wrap_content"
  17.        android:layout_height="match_parent"
  18.        android:layout_gravity="start"
  19.        app:headerLayout="@layout/navigation_header"
  20.        app:menu="@menu/navigation_menu"
  21.        />
  22.  
  23. </android.support.v4.widget.DrawerLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement