PlayerAndroid/app/src/main/res/layout/activity_pro_version.xml

87 lines
3.3 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?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"
2018-08-22 17:54:07 +00:00
android:layout_below="@+id/status_bar_container"
android:layout_alignParentStart="true">
2018-07-27 13:07:33 +00:00
<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">
2018-08-22 17:54:07 +00:00
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-08-22 17:54:07 +00:00
android:layout_height="wrap_content"
app:layout_scrollFlags="scroll|enterAlways"
app:titleEnabled="false">
2018-07-27 13:07:33 +00:00
2018-08-22 17:54:07 +00:00
<FrameLayout
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-08-22 17:54:07 +00:00
android:layout_height="wrap_content">
2018-07-27 13:07:33 +00:00
2018-08-22 17:54:07 +00:00
<View
android:id="@+id/cab_stub"
android:layout_width="match_parent"
android:layout_height="48dp" />
2018-07-27 13:07:33 +00:00
2018-08-22 17:54:07 +00:00
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
style="@style/Toolbar48"
app:layout_collapseMode="pin"
app:title=""
tools:ignore="UnusedAttribute">
<TextView
android:id="@+id/title"
style="@style/BigTitleTextAppearance"
android:text="@string/buy_retromusic_pro" />
</android.support.v7.widget.Toolbar>
</FrameLayout>
</android.support.design.widget.CollapsingToolbarLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="?dividerColor" />
2018-07-27 13:07:33 +00:00
</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>