Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.    android:id="@+id/drawer_layout"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent" >
  5.  
  6.     <!-- The main content view -->
  7.  
  8.     <FrameLayout
  9.        android:id="@+id/content_frame"
  10.        android:layout_width="match_parent"
  11.        android:layout_height="match_parent" />
  12.     <!-- The navigation drawer -->
  13.  
  14.     <ListView
  15.        android:id="@+id/drawer_list"
  16.        android:layout_width="240dp"
  17.        android:layout_height="match_parent"
  18.        android:layout_gravity="start"
  19.        android:background="#111"
  20.        android:choiceMode="singleChoice"
  21.        android:divider="@android:color/transparent"
  22.        android:dividerHeight="0dp" />
  23.  
  24. </android.support.v4.widget.DrawerLayout>