Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <android.support.v7.widget.Toolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- />
- <android.support.v4.widget.DrawerLayout
- android:id="@+id/drawer_layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <!-- The Main Content View -->
- <FrameLayout
- android:id="@+id/content_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
- <!-- The Left Navigation Drawer -->
- <ListView
- android:id="@+id/left_drawer"
- android:layout_width="240dp"
- android:layout_height="match_parent"
- android:layout_gravity="start"
- android:choiceMode="singleChoice"
- android:divider="#818181"
- android:dividerHeight="1dp"
- android:background="#E3F2FD" />
- </android.support.v4.widget.DrawerLayout>
- </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement