Advertisement
Narzew

Android Main.xml

Nov 30th, 2014
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.71 KB | None | 0 0
  1. <!-- WWW.HACKTUT.ORG -->
  2. <?xml version="1.0" encoding="utf-8"?>
  3. <android.support.v4.widget.DrawerLayout xmlns:android=http://schemas.android.com/apk/res/android"
  4.    android:id="@+id/drawerLayout"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent" >
  7.    
  8.     <FrameLayout
  9.        android:id="@+id/mainContent"
  10.        android:layout_width="match_parent"
  11.        android:layout_height="match_parent" >
  12.     </FrameLayout>
  13.    
  14.     <ListView
  15.         android:id="@+id/drawerList"
  16.         android:entries="@array/menu"
  17.         android:layout_width="240dp"
  18.         android:layout_height="match_parent"
  19.         android:layout_gravity="left" >
  20.     </ListView>
  21.    
  22. </android.support.v4.widget.DrawerLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement