2018-07-27 18:37:33 +05:30
|
|
|
<?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: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>
|
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-08-22 23:24:07 +05:30
|
|
|
android:layout_below="@+id/status_bar_container"
|
|
|
|
android:layout_alignParentStart="true">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2018-07-27 18:37:33 +05:30
|
|
|
android:id="@+id/app_bar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:elevation="0dp"
|
|
|
|
app:elevation="0dp">
|
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
2018-08-22 23:24:07 +05:30
|
|
|
android:id="@+id/collapsing_toolbar"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-08-22 23:24:07 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways"
|
|
|
|
app:titleEnabled="false">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
2018-12-04 21:04:26 +05:30
|
|
|
style="@style/Toolbar"
|
2018-08-30 14:59:30 +05:30
|
|
|
app:layout_collapseMode="pin"
|
|
|
|
tools:ignore="UnusedAttribute">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
style="@style/BigTitleTextAppearance"
|
2018-11-05 19:23:07 +05:30
|
|
|
android:text="@string/buy_retro_music_pro" />
|
2018-08-22 23:24:07 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
</androidx.appcompat.widget.Toolbar>
|
|
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout>
|
2018-08-22 23:24:07 +05:30
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="?dividerColor" />
|
2018-08-30 14:59:30 +05:30
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.core.widget.NestedScrollView
|
2018-07-27 18:37:33 +05:30
|
|
|
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" />
|
2018-08-30 14:59:30 +05:30
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
|
|
|
|
<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>
|