33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<code.name.monkey.retromusic.views.WidthFitSquareLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:id="@+id/image_container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/image"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:scaleType="centerCrop"
|
||
|
android:transitionName="@string/transition_album_art"
|
||
|
tools:ignore="ContentDescription" />
|
||
|
|
||
|
<View
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="48dp"
|
||
|
android:layout_gravity="bottom"
|
||
|
android:background="@drawable/shadow_up" />
|
||
|
|
||
|
<TextView
|
||
|
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:padding="12dp"
|
||
|
android:textColor="@color/md_white_1000" />
|
||
|
|
||
|
</code.name.monkey.retromusic.views.WidthFitSquareLayout>
|