mirror of
https://github.com/gsantner/dandelion
synced 2024-11-16 17:32:08 +01:00
44 lines
No EOL
1.8 KiB
XML
44 lines
No EOL
1.8 KiB
XML
<?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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".activity.MainActivity">
|
|
|
|
<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:layout_scrollFlags="scroll|enterAlways"
|
|
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<include layout="@layout/main__content" />
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:theme="@style/AppTheme.AppBarOverlay"
|
|
app:layout_behavior=".ui.BottomBarBehavior">
|
|
|
|
<android.support.v7.widget.ActionMenuView
|
|
android:id="@+id/toolbar2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="45dp"
|
|
android:background="?attr/colorPrimary"
|
|
app:layout_scrollFlags="scroll|enterAlways|snap"
|
|
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
</android.support.design.widget.CoordinatorLayout> |