2016-03-03 17:46:31 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-09-21 21:35:03 +02:00
|
|
|
<android.support.design.widget.CoordinatorLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context=".activity.MainActivity">
|
2016-03-03 17:46:31 +01:00
|
|
|
|
|
|
|
<android.support.design.widget.AppBarLayout
|
2016-10-13 16:56:31 +02:00
|
|
|
android:id="@+id/main__appbar"
|
2016-03-03 17:46:31 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-08-07 01:51:07 +02:00
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
2016-06-05 01:42:10 +02:00
|
|
|
|
2016-09-15 23:08:03 +02:00
|
|
|
<android.support.v7.widget.Toolbar
|
2016-09-21 21:15:34 +02:00
|
|
|
android:id="@+id/main__topbar"
|
2016-09-15 23:08:03 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways|snap"
|
|
|
|
app:popupTheme="@style/AppTheme.PopupOverlay"/>
|
2016-06-05 01:42:10 +02:00
|
|
|
|
2016-03-03 17:46:31 +01:00
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
|
2016-09-21 21:15:34 +02:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/fragment_container"
|
2016-09-21 21:35:03 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
|
2016-03-03 17:46:31 +01:00
|
|
|
|
2016-06-04 17:10:24 +02:00
|
|
|
<android.support.design.widget.AppBarLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-10-13 16:56:31 +02:00
|
|
|
android:layout_gravity="bottom|end"
|
2016-06-21 16:18:19 +02:00
|
|
|
android:theme="@style/AppTheme.AppBarOverlay"
|
|
|
|
app:layout_behavior=".ui.BottomBarBehavior">
|
2016-03-03 17:46:31 +01:00
|
|
|
|
2016-06-04 17:10:24 +02:00
|
|
|
<android.support.v7.widget.ActionMenuView
|
2016-09-21 21:15:34 +02:00
|
|
|
android:id="@+id/main__bottombar"
|
2016-06-04 17:10:24 +02:00
|
|
|
android:layout_width="match_parent"
|
2016-06-07 13:33:50 +02:00
|
|
|
android:layout_height="45dp"
|
2016-09-15 23:08:03 +02:00
|
|
|
android:background="@color/colorPrimary"
|
|
|
|
android:theme="@style/BottomToolbarMenuOverflowStyle"
|
2016-06-21 16:18:19 +02:00
|
|
|
app:layout_scrollFlags="scroll|enterAlways|snap"
|
2016-09-15 23:08:03 +02:00
|
|
|
app:popupTheme="@style/Theme.AppCompat.NoActionBar"/>
|
2016-03-03 17:46:31 +01:00
|
|
|
|
2016-06-04 17:10:24 +02:00
|
|
|
</android.support.design.widget.AppBarLayout>
|
2016-03-03 17:46:31 +01:00
|
|
|
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|