mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-20 09:05:20 +01:00
72 lines
2.8 KiB
XML
72 lines
2.8 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout 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:id="@+id/root"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical"
|
||
|
tools:ignore="UnusedAttribute">
|
||
|
|
||
|
<FrameLayout
|
||
|
android:id="@+id/status_bar_container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<include layout="@layout/status_bar" />
|
||
|
</FrameLayout>
|
||
|
|
||
|
<android.support.design.widget.CoordinatorLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_alignParentStart="true"
|
||
|
android:layout_below="@+id/status_bar_container">
|
||
|
|
||
|
<android.support.design.widget.AppBarLayout
|
||
|
android:id="@+id/app_bar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:elevation="0dp"
|
||
|
app:elevation="0dp">
|
||
|
|
||
|
<code.name.monkey.retromusic.views.SansFontCollapsingToolbarLayout
|
||
|
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="wrap_content" />
|
||
|
|
||
|
<android.support.v7.widget.Toolbar
|
||
|
android:id="@+id/toolbar"
|
||
|
style="@style/Toolbar48"
|
||
|
app:layout_collapseMode="pin"
|
||
|
app:navigationIcon="@drawable/ic_close_white_24dp" />
|
||
|
|
||
|
</code.name.monkey.retromusic.views.SansFontCollapsingToolbarLayout>
|
||
|
</android.support.design.widget.AppBarLayout>
|
||
|
|
||
|
<android.support.v4.widget.NestedScrollView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
||
|
|
||
|
<include layout="@layout/activity_pro_version_content" />
|
||
|
</android.support.v4.widget.NestedScrollView>
|
||
|
</android.support.design.widget.CoordinatorLayout>
|
||
|
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:gravity="center"
|
||
|
android:padding="16dp"
|
||
|
android:text="@string/purchase_summary" />
|
||
|
</RelativeLayout>
|