2014-11-17 16:25:17 +01:00
|
|
|
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-07-20 02:39:46 +02:00
|
|
|
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 -->
|
2014-11-17 16:25:17 +01:00
|
|
|
<ListView
|
|
|
|
android:id="@+id/left_drawer"
|
2014-07-20 02:39:46 +02:00
|
|
|
android:layout_width="240dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="start"
|
|
|
|
android:choiceMode="singleChoice"
|
2014-07-20 03:17:05 +02:00
|
|
|
android:divider="@drawable/divider"
|
|
|
|
android:dividerHeight="1px"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:background="@color/color_white" />
|
2014-07-20 02:39:46 +02:00
|
|
|
</android.support.v4.widget.DrawerLayout>
|