mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-21 17:35:21 +01:00
24 lines
982 B
XML
24 lines
982 B
XML
|
<?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">
|
||
|
|
||
|
<code.name.monkey.retromusic.views.WidthFitSquareLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="16dp">
|
||
|
|
||
|
<code.name.monkey.retromusic.views.CircularImageView
|
||
|
android:id="@+id/player_image"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:scaleType="centerCrop"
|
||
|
app:civ_border="false"
|
||
|
app:civ_shadow="true"
|
||
|
app:civ_shadow_radius="8"
|
||
|
tools:ignore="ContentDescription,UnusedAttribute" />
|
||
|
|
||
|
</code.name.monkey.retromusic.views.WidthFitSquareLayout>
|
||
|
</FrameLayout>
|