RetroMusicPlayer/app/src/main/res/layout-xlarge/fragment_album_card_cover.xml

31 lines
1.2 KiB
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"
2018-11-05 19:23:07 +05:30
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-07-27 18:37:33 +05:30
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
2018-11-05 19:23:07 +05:30
android:layout_height="match_parent">
2019-09-09 19:08:49 +05:30
<androidx.cardview.widget.CardView
2018-11-05 19:23:07 +05:30
android:id="@+id/player_album_art_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="8dp"
app:cardCornerRadius="12dp"
2018-11-13 09:00:08 +05:30
app:cardElevation="4dp"
2018-11-05 19:23:07 +05:30
app:cardPreventCornerOverlap="false"
app:cardUseCompatPadding="true">
2018-07-27 18:37:33 +05:30
2018-11-05 19:23:07 +05:30
<androidx.appcompat.widget.AppCompatImageView
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[2]" />
2018-07-27 18:37:33 +05:30
2018-11-05 19:23:07 +05:30
<View
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/shadow_up_edited" />
</androidx.cardview.widget.CardView>
2018-07-27 18:37:33 +05:30
</FrameLayout>