mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-21 17:35:21 +01:00
34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<com.google.android.material.card.MaterialCardView 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:id="@+id/container"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
app:cardCornerRadius="26dp"
|
||
|
app:cardUseCompatPadding="true"
|
||
|
tools:backgroundTint="@color/md_red_400">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center_vertical"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatImageView
|
||
|
android:id="@+id/icon"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="14dp"
|
||
|
app:srcCompat="@drawable/ic_shuffle_white_24dp"
|
||
|
app:tint="@color/md_black_1000" />
|
||
|
|
||
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
||
|
android:id="@+id/shuffle_text"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginEnd="16dp"
|
||
|
android:text="@string/action_shuffle_all"
|
||
|
android:textColor="@color/md_black_1000" />
|
||
|
</LinearLayout>
|
||
|
</com.google.android.material.card.MaterialCardView>
|