tachiyomi/app/src/main/res/layout/activity_main.xml

32 lines
1.2 KiB
XML
Raw Normal View History

2015-12-30 14:10:31 +01:00
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
2015-09-24 17:27:43 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
2015-09-24 17:27:43 +02:00
2015-12-26 00:07:45 +01:00
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
2016-01-05 13:54:00 +01:00
android:layout_height="wrap_content">
2015-12-26 00:07:45 +01:00
<include layout="@layout/toolbar" />
</android.support.design.widget.AppBarLayout>
2015-09-25 12:44:11 +02:00
<!-- the layout which will contain (host) the drawerLayout -->
<FrameLayout
android:id="@+id/drawer_container"
2015-09-24 17:27:43 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2015-12-30 14:10:31 +01:00
app:layout_behavior="@string/appbar_scrolling_view_behavior">
2015-09-24 17:27:43 +02:00
2015-09-25 12:44:11 +02:00
<!-- 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"
2015-09-24 17:27:43 +02:00
android:layout_width="match_parent"
2015-09-25 12:44:11 +02:00
android:layout_height="match_parent">
2015-09-24 17:27:43 +02:00
2015-09-25 12:44:11 +02:00
</FrameLayout>
</FrameLayout>
2015-12-30 14:10:31 +01:00
</android.support.design.widget.CoordinatorLayout>