2016-03-03 17:46:31 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2016-03-26 01:14:17 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2016-03-03 17:46:31 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fitsSystemWindows="true"
|
2016-03-29 19:38:50 +02:00
|
|
|
tools:context=".activity.MainActivity">
|
2016-03-03 17:46:31 +01:00
|
|
|
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
|
|
|
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
|
2016-06-04 11:11:51 +02:00
|
|
|
<include layout="@layout/main__content" />
|
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"
|
2016-06-04 21:46:54 +02:00
|
|
|
android:layout_gravity="bottom"
|
2016-06-04 17:10:24 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
2016-03-03 17:46:31 +01:00
|
|
|
|
2016-06-04 17:10:24 +02:00
|
|
|
<android.support.v7.widget.ActionMenuView
|
|
|
|
android:id="@+id/toolbar2"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
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>
|