64 lines
2.6 KiB
XML
64 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.google.android.material.card.MaterialCardView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
app:cardElevation="0dp"
|
|
android:id="@+id/item"
|
|
android:foreground="?android:attr/selectableItemBackground"
|
|
app:cardBackgroundColor="@color/colorPrimaryDark"
|
|
app:cardCornerRadius="8dp">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="12dp"
|
|
android:paddingBottom="12dp"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
<ImageView
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:padding="11dp"
|
|
android:id="@+id/icon"
|
|
android:src="@drawable/round_music_note"
|
|
app:tint="@color/colorPrimaryText"/>
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_weight="1"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp"
|
|
android:orientation="vertical">
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
style="@style/AnotherWidget.Settings.Title"
|
|
android:id="@+id/title"
|
|
android:text="@string/settings_show_music_title"/>
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/label"
|
|
style="@style/AnotherWidget.Settings.Subtitle"/>
|
|
</LinearLayout>
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:padding="11dp"
|
|
android:src="@drawable/round_error"
|
|
app:tint="@color/errorColorText"
|
|
android:id="@+id/error_icon"/>
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:padding="11dp"
|
|
android:id="@+id/info_icon"
|
|
android:src="@drawable/round_drag_handle"
|
|
app:tint="@color/colorPrimaryText"/>
|
|
</LinearLayout>
|
|
</com.google.android.material.card.MaterialCardView> |