mirror of https://github.com/M66B/FairEmail.git
22 lines
858 B
XML
22 lines
858 B
XML
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/drawer_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".ActivityView">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/content_frame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<ListView
|
|
android:id="@+id/drawer_list"
|
|
android:layout_width="270dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start"
|
|
android:background="?attr/colorDrawerBackground"
|
|
android:choiceMode="singleChoice"
|
|
android:divider="@android:color/transparent"
|
|
android:dividerHeight="0dp" />
|
|
</android.support.v4.widget.DrawerLayout> |