2018-07-27 13:07:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-30 20:48:14 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-07-27 13:07:33 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2020-04-30 20:48:14 +00:00
|
|
|
android:background="@color/md_black_1000"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_height="match_parent"
|
2019-12-26 15:00:58 +00:00
|
|
|
android:orientation="vertical">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-04-30 20:48:14 +00:00
|
|
|
<View
|
|
|
|
android:id="@+id/bannerContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@drawable/shadow_pro"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
2019-12-26 15:00:58 +00:00
|
|
|
<code.name.monkey.retromusic.views.StatusBarView
|
|
|
|
android:id="@+id/status_bar"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-12-26 15:00:58 +00:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:background="?attr/colorSurface"
|
2020-04-30 20:48:14 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2019-12-26 15:00:58 +00:00
|
|
|
tools:ignore="UnusedAttribute" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-04-30 20:48:14 +00:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/appBarLayout"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-04-30 20:48:14 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:elevation="0dp"
|
|
|
|
app:elevation="0dp"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/status_bar">
|
|
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
style="@style/Toolbar"
|
|
|
|
app:layout_collapseMode="pin"
|
|
|
|
app:navigationIcon="@drawable/ic_keyboard_backspace_black_24dp"
|
|
|
|
app:title="@string/retro_music_pro"
|
|
|
|
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal"
|
|
|
|
app:titleTextColor="@color/md_white_1000"
|
|
|
|
tools:ignore="UnusedAttribute" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/cardContent"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:orientation="vertical"
|
|
|
|
app:layout_constraintBottom_toTopOf="@id/actions"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/appBarLayout">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-04-30 20:48:14 +00:00
|
|
|
<LinearLayout
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-30 20:48:14 +00:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
app:srcCompat="@drawable/ic_invert_colors_white_24dp"
|
|
|
|
app:tint="@color/md_white_1000" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-04-30 20:48:14 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
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"
|
2020-04-30 20:48:14 +00:00
|
|
|
android:padding="16dp"
|
|
|
|
android:text="@string/black_theme_name"
|
|
|
|
android:textAppearance="@style/TextViewSubtitle1"
|
|
|
|
android:textColor="@color/md_white_1000" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-04-30 20:48:14 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
app:srcCompat="@drawable/ic_theme_palette_white_24dp"
|
|
|
|
app:tint="@color/md_white_1000" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-04-30 20:48:14 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:text="@string/now_playing_themes"
|
|
|
|
android:textAppearance="@style/TextViewSubtitle1"
|
|
|
|
android:textColor="@color/md_white_1000" />
|
|
|
|
</LinearLayout>
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-04-30 20:48:14 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-04-30 20:48:14 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
app:srcCompat="@drawable/ic_view_carousel_black_24dp"
|
|
|
|
app:tint="@color/md_white_1000" />
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:text="@string/carousal_effect_on_now_playing_screen"
|
|
|
|
android:textAppearance="@style/TextViewSubtitle1"
|
|
|
|
android:textColor="@color/md_white_1000" />
|
|
|
|
</LinearLayout>
|
2019-01-28 10:45:51 +00:00
|
|
|
|
2019-12-26 15:00:58 +00:00
|
|
|
<LinearLayout
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-30 20:48:14 +00:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
app:srcCompat="@drawable/ic_rounded_corner"
|
|
|
|
app:tint="@color/md_white_1000" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2020-04-30 20:48:14 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2019-01-28 10:45:51 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-30 20:48:14 +00:00
|
|
|
android:padding="16dp"
|
|
|
|
android:text="@string/window_corner_edges"
|
|
|
|
android:textAppearance="@style/TextViewSubtitle1"
|
|
|
|
android:textColor="@color/md_white_1000" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
app:srcCompat="@drawable/ic_favorite_white_24dp"
|
|
|
|
app:tint="@color/md_white_1000" />
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2019-01-28 10:45:51 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-30 20:48:14 +00:00
|
|
|
android:padding="16dp"
|
|
|
|
android:text="@string/support_development"
|
|
|
|
android:textAppearance="@style/TextViewSubtitle1"
|
|
|
|
android:textColor="@color/md_white_1000" />
|
2019-12-26 15:00:58 +00:00
|
|
|
</LinearLayout>
|
2020-04-30 20:48:14 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/actions"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="16dp"
|
|
|
|
android:paddingBottom="16dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent">
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:padding="24dp"
|
|
|
|
android:text="@string/try_retro_music_premium"
|
|
|
|
android:textAppearance="@style/TextViewHeadline5"
|
|
|
|
android:textColor="@color/md_white_1000" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/restoreButton"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:paddingVertical="16dp"
|
|
|
|
android:text="@string/restore"
|
|
|
|
android:textAppearance="@style/TextViewHeadline6"
|
|
|
|
android:textColor="@color/md_black_1000"
|
|
|
|
app:backgroundTint="@color/md_white_1000"
|
|
|
|
app:cornerRadius="28dp" />
|
|
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/purchaseButton"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:paddingVertical="16dp"
|
|
|
|
android:text="@string/purchase"
|
|
|
|
android:textAppearance="@style/TextViewHeadline6"
|
|
|
|
app:cornerRadius="28dp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|