69 lines
2.4 KiB
XML
69 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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"
|
|
android:orientation="vertical">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
tools:ignore="UnusedAttribute">
|
|
|
|
<include layout="@layout/status_bar"/>
|
|
|
|
</FrameLayout>
|
|
|
|
<android.support.design.widget.CoordinatorLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:id="@+id/appbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/colorPrimary"
|
|
tools:ignore="UnusedAttribute">
|
|
|
|
<code.name.monkey.retromusic.views.SansFontCollapsingToolbarLayout
|
|
android:id="@+id/collapsing_toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="96dp"
|
|
app:collapsedTitleTextAppearance="@style/CollapsedTitleAppearance"
|
|
app:expandedTitleGravity="top"
|
|
app:expandedTitleMarginStart="16dp"
|
|
app:expandedTitleMarginTop="48dp"
|
|
app:expandedTitleTextAppearance="@style/ExpandedTitleAppearance"
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed">
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp"
|
|
app:layout_collapseMode="parallax"
|
|
app:layout_collapseParallaxMultiplier="0.7"/>
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
style="@style/Toolbar48"
|
|
android:background="?attr/colorPrimary"
|
|
tools:ignore="UnusedAttribute"/>
|
|
|
|
</code.name.monkey.retromusic.views.SansFontCollapsingToolbarLayout>
|
|
|
|
<ViewStub
|
|
android:id="@+id/cab_stub"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp"
|
|
app:layout_collapseMode="parallax"
|
|
app:layout_collapseParallaxMultiplier="0.7"/>
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/fragment_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|
|
</LinearLayout>
|