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

24 lines
1005 B
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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"
2020-01-24 16:54:08 +00:00
android:layout_height="match_parent">
2018-07-27 13:07:33 +00:00
2020-01-24 16:54:08 +00:00
<code.name.monkey.retromusic.views.WidthFitSquareCardView
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2020-01-24 16:54:08 +00:00
android:layout_height="match_parent"
android:layout_margin="12dp"
app:cardCornerRadius="8dp"
app:cardElevation="8dp">
2018-07-27 13:07:33 +00:00
2020-01-24 16:54:08 +00:00
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/player_image"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-12-08 03:34:15 +00:00
android:layout_height="match_parent"
2020-01-24 16:54:08 +00:00
android:scaleType="centerCrop"
tools:ignore="ContentDescription,UnusedAttribute"
tools:srcCompat="@tools:sample/backgrounds/scenic[5]" />
2018-07-27 13:07:33 +00:00
2020-01-24 16:54:08 +00:00
</code.name.monkey.retromusic.views.WidthFitSquareCardView>
2018-07-27 13:07:33 +00:00
</FrameLayout>