PlayerAndroid/app/src/main/res/layout/fragment_album_full_card_co...

21 lines
860 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"
android:layout_height="match_parent">
2018-11-05 13:53:07 +00:00
<com.google.android.material.card.MaterialCardView
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
app:cardCornerRadius="8dp"
app:cardUseCompatPadding="true">
2018-09-09 19:44:46 +00:00
<ImageView
android:id="@+id/player_image"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-09-09 19:44:46 +00:00
android:layout_height="match_parent"
android:scaleType="centerCrop"
tools:ignore="ContentDescription,UnusedAttribute" />
2018-11-05 13:53:07 +00:00
</com.google.android.material.card.MaterialCardView>
2018-07-27 13:07:33 +00:00
</FrameLayout>