mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-08 11:47:24 +01:00
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<android.support.design.widget.CoordinatorLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center">
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:id="@+id/appbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<include layout="@layout/toolbar" />
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<!-- the layout which will contain (host) the drawerLayout -->
|
|
<FrameLayout
|
|
android:id="@+id/drawer_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
<!-- the layout which will be the content of the activity (which will be hosted inside the drawer (NOT the list of the drawer)) -->
|
|
<FrameLayout
|
|
android:id="@+id/frame_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
</FrameLayout>
|
|
</FrameLayout>
|
|
</android.support.design.widget.CoordinatorLayout> |