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

72 lines
2.8 KiB
XML
Raw Normal View History

2018-11-13 03:30:08 +00:00
<?xml version="1.0" encoding="utf-8"?>
2020-01-06 05:34:09 +00:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-11-13 03:30:08 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-01-06 05:34:09 +00:00
android:layout_margin="2dp"
android:background="?attr/rectSelector"
android:clickable="true"
android:focusable="true"
tools:ignore="MissingPrefix">
2018-11-13 03:30:08 +00:00
2020-01-06 05:34:09 +00:00
<com.google.android.material.card.MaterialCardView
2018-11-13 03:30:08 +00:00
android:layout_width="match_parent"
2020-01-06 05:34:09 +00:00
android:layout_height="wrap_content"
android:orientation="vertical"
app:cardCornerRadius="8dp"
app:cardUseCompatPadding="true">
2018-11-13 03:30:08 +00:00
2020-01-06 05:34:09 +00:00
<code.name.monkey.retromusic.views.WidthFitSquareLayout
android:id="@+id/imageContainer"
2018-11-13 03:30:08 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-01-06 05:34:09 +00:00
android:background="?rectSelector"
2018-11-13 03:30:08 +00:00
android:orientation="vertical">
2020-01-06 05:34:09 +00:00
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/image"
2018-11-13 03:30:08 +00:00
android:layout_width="match_parent"
2020-01-06 05:34:09 +00:00
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:transitionName="@string/transition_album_art"
tools:ignore="ContentDescription"
tools:src="@tools:sample/avatars" />
2018-11-13 03:30:08 +00:00
2020-01-06 05:34:09 +00:00
<LinearLayout
2018-11-13 03:30:08 +00:00
android:layout_width="match_parent"
2020-01-06 05:34:09 +00:00
android:layout_height="match_parent"
android:orientation="vertical">
2018-11-13 03:30:08 +00:00
2020-01-06 05:34:09 +00:00
<Space
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" />
2018-11-13 03:30:08 +00:00
2020-01-06 05:34:09 +00:00
<View
android:id="@+id/mask"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/shadow_up_home" />
</LinearLayout>
</code.name.monkey.retromusic.views.WidthFitSquareLayout>
<com.google.android.material.textview.MaterialTextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center"
android:gravity="center"
android:maxLines="2"
android:paddingStart="8dp"
android:paddingEnd="8dp"
android:paddingBottom="8dp"
android:textAppearance="@style/TextViewSubtitle1"
android:textColor="@color/md_white_1000"
tools:text="@string/bug_report_summary" />
</com.google.android.material.card.MaterialCardView>
</FrameLayout>