Advertisement
banyucenter

Main.axml

Nov 7th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.61 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    android:orientation="vertical"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    android:minWidth="25px"
  8.    android:minHeight="25px"
  9.    android:fitsSystemWindows="true">
  10.     <android.support.v4.widget.DrawerLayout
  11.        android:orientation="vertical"
  12.        android:layout_width="match_parent"
  13.        android:layout_height="match_parent"
  14.        android:minWidth="25px"
  15.        android:minHeight="25px"
  16.        android:id="@+id/drawer_layout">
  17.         <LinearLayout
  18.            android:id="@+id/layout_main"
  19.            android:layout_width="match_parent"
  20.            android:layout_height="match_parent"
  21.            android:orientation="vertical">
  22.             <include
  23.                layout="@layout/app_bar" />
  24.             <FrameLayout
  25.                android:id="@+id/HomeFrameLayout"
  26.                android:minWidth="25px"
  27.                android:minHeight="25px"
  28.                android:layout_width="match_parent"
  29.                android:layout_height="match_parent" />
  30.         </LinearLayout>
  31.         <android.support.design.widget.NavigationView
  32.            android:id="@+id/nav_view"
  33.            android:layout_width="wrap_content"
  34.            android:layout_height="match_parent"
  35.            android:layout_gravity="start"
  36.            app:menu="@menu/navmenu"
  37.            app:headerLayout="@layout/headerdrawerlayout" />
  38.     </android.support.v4.widget.DrawerLayout>
  39. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement