33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<android.support.v4.widget.DrawerLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/drawer_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<!-- The main content view -->
|
|
<FrameLayout
|
|
android:id="@+id/content_frame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<!-- The navigation drawer -->
|
|
<ListView
|
|
android:id="@+id/left_drawer"
|
|
android:layout_width="200dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="left"
|
|
android:cacheColorHint="@android:color/transparent"
|
|
android:choiceMode="singleChoice"
|
|
android:divider="@color/lightgray"
|
|
android:background="@color/white"
|
|
android:dividerHeight="1.5dp"
|
|
android:listSelector="@android:color/transparent"
|
|
android:scrollbars="none" />
|
|
</android.support.v4.widget.DrawerLayout>
|
|
|
|
</RelativeLayout> |