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

31 lines
1.3 KiB
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"
2019-01-28 10:45:51 +00:00
android:layout_height="match_parent"
2018-12-25 14:58:47 +00:00
android:layout_gravity="center">
2018-07-27 13:07:33 +00:00
2018-12-08 03:34:15 +00:00
<code.name.monkey.retromusic.views.WidthFitSquareLayout
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2019-01-02 03:55:55 +00:00
android:layout_height="wrap_content"
android:layout_gravity="center">
2018-07-27 13:07:33 +00:00
2018-12-08 03:34:15 +00:00
<com.google.android.material.card.MaterialCardView
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"
android:layout_margin="16dp"
2019-09-09 13:38:49 +00:00
app:cardCornerRadius="8dp"
app:cardElevation="6dp">
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<androidx.appcompat.widget.AppCompatImageView
2018-07-27 13:07:33 +00:00
android:id="@+id/player_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
2019-09-09 13:38:49 +00:00
tools:ignore="ContentDescription,UnusedAttribute"
tools:srcCompat="@tools:sample/backgrounds/scenic[5]" />
2018-12-08 03:34:15 +00:00
</com.google.android.material.card.MaterialCardView>
</code.name.monkey.retromusic.views.WidthFitSquareLayout>
2018-07-27 13:07:33 +00:00
</FrameLayout>