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"
|
2019-01-28 16:15:51 +05:30
|
|
|
android:layout_height="match_parent"
|
2018-12-25 20:28:47 +05:30
|
|
|
android:layout_gravity="center">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-12-08 09:04:15 +05:30
|
|
|
<code.name.monkey.retromusic.views.WidthFitSquareLayout
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2019-01-02 09:25:55 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-12-08 09:04:15 +05:30
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
android:id="@+id/player_album_art_frame"
|
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"
|
2019-07-31 10:49:28 +05:30
|
|
|
android:layout_margin="16dp"
|
2019-09-09 19:08:49 +05:30
|
|
|
app:cardCornerRadius="8dp"
|
|
|
|
app:cardElevation="6dp">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
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"
|
2019-09-09 19:08:49 +05:30
|
|
|
tools:ignore="ContentDescription,UnusedAttribute"
|
|
|
|
tools:srcCompat="@tools:sample/backgrounds/scenic[5]" />
|
2018-12-08 09:04:15 +05:30
|
|
|
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
</code.name.monkey.retromusic.views.WidthFitSquareLayout>
|
2018-07-27 18:37:33 +05:30
|
|
|
</FrameLayout>
|