You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
891 B
XML
27 lines
891 B
XML
<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="240dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start"
|
|
android:choiceMode="singleChoice"
|
|
android:divider="#666"
|
|
android:dividerHeight="1dp"
|
|
android:background="#333"
|
|
android:paddingLeft="15sp"
|
|
android:paddingRight="15sp"
|
|
/>
|
|
|
|
</android.support.v4.widget.DrawerLayout> |