Advertisement
Guest User

Untitled

a guest
Sep 13th, 2015
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.16 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <android.support.v4.widget.DrawerLayout
  4.  
  5.    xmlns:android="http://schemas.android.com/apk/res/android"
  6.    android:id="@+id/DrawerLayout"
  7.    android:layout_width="match_parent"
  8.    android:layout_height="match_parent"
  9.    android:elevation="7dp">
  10.  
  11.  
  12.     <LinearLayout
  13.        android:layout_width="match_parent"
  14.        android:layout_height="match_parent"
  15.        android:orientation="vertical">
  16.  
  17.  
  18.         <include
  19.            android:id="@+id/tool_bar"
  20.            layout="@layout/tool_bar">
  21.         </include>
  22.  
  23.    
  24.  
  25.     </LinearLayout>
  26.  
  27.     <!-- The main content view -->
  28.  
  29.     <FrameLayout
  30.        android:id="@+id/content_frame"
  31.        android:layout_width="match_parent"
  32.        android:layout_height="match_parent" />
  33.  
  34.  
  35.     <android.support.v7.widget.RecyclerView
  36.        android:id="@+id/RecyclerView"
  37.        android:layout_width="260dp"
  38.        android:layout_height="match_parent"
  39.        android:layout_gravity="left"
  40.  
  41.        android:background="#ffffff"
  42.        android:scrollbars="vertical">
  43.  
  44.     </android.support.v7.widget.RecyclerView>
  45.  
  46.  
  47. </android.support.v4.widget.DrawerLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement