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"
|
2018-11-20 20:57:59 +05:30
|
|
|
android:layout_height="match_parent" >
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
<com.google.android.material.card.MaterialCardView
|
2018-07-27 18:37:33 +05:30
|
|
|
android:id="@+id/player_album_art_frame"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
app:cardCornerRadius="8dp">
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.WidthFitSquareLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2018-07-27 18:37:33 +05:30
|
|
|
android:id="@+id/player_image"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
tools:ignore="ContentDescription,UnusedAttribute" />
|
|
|
|
</code.name.monkey.retromusic.views.WidthFitSquareLayout>
|
2018-11-05 19:23:07 +05:30
|
|
|
</com.google.android.material.card.MaterialCardView>
|
2018-07-27 18:37:33 +05:30
|
|
|
</FrameLayout>
|