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

24 lines
1,005 B
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?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 22:24:08 +05:30
android:layout_height="match_parent">
2018-07-27 18:37:33 +05:30
2020-01-24 22:24:08 +05:30
<code.name.monkey.retromusic.views.WidthFitSquareCardView
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
2020-01-24 22:24:08 +05:30
android:layout_height="match_parent"
android:layout_margin="12dp"
app:cardCornerRadius="8dp"
app:cardElevation="8dp">
2018-07-27 18:37:33 +05:30
2020-01-24 22:24:08 +05:30
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/player_image"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
2018-12-08 09:04:15 +05:30
android:layout_height="match_parent"
2020-01-24 22:24:08 +05:30
android:scaleType="centerCrop"
tools:ignore="ContentDescription,UnusedAttribute"
tools:srcCompat="@tools:sample/backgrounds/scenic[5]" />
2018-07-27 18:37:33 +05:30
2020-01-24 22:24:08 +05:30
</code.name.monkey.retromusic.views.WidthFitSquareCardView>
2018-07-27 18:37:33 +05:30
</FrameLayout>