mirror of
https://github.com/gsantner/dandelion
synced 2024-11-15 17:02:10 +01:00
49 lines
No EOL
2.1 KiB
XML
49 lines
No EOL
2.1 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="com.github.dfa.diaspora_android.activity.MainActivity">
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:id="@+id/main__appbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/main__topbar"
|
|
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" />
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/fragment_container"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|end"
|
|
android:theme="@style/AppTheme.AppBarOverlay"
|
|
app:layout_behavior="com.github.dfa.diaspora_android.ui.BottomBarBehavior">
|
|
|
|
<android.support.v7.widget.ActionMenuView
|
|
android:id="@+id/main__bottombar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="45dp"
|
|
android:background="@color/colorPrimary"
|
|
android:theme="@style/BottomToolbarMenuOverflowStyle"
|
|
app:layout_scrollFlags="scroll|enterAlways|snap"
|
|
app:popupTheme="@style/Theme.AppCompat.NoActionBar" />
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
</android.support.design.widget.CoordinatorLayout> |