* Fix: background color of download list when using custom theme * Fix background color in Migration's source list * Fix custom theme color in manga's Edit Info * Fix custom theme color in manga's Migration Config * Fix custom theme color in manga's Migration Config * Fix custom theme color & relayout merge setting's dialog * using CustomColorScheme for DownloadQueue * using CustomColorScheme for metadata source
43 lines
1.6 KiB
XML
43 lines
1.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"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
app:cardBackgroundColor="@android:color/transparent"
|
|
app:cardElevation="0dp"
|
|
app:cardForegroundColor="@color/draggable_card_foreground">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
style="@style/TextAppearance.Tachiyomi.SectionHeader"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:paddingHorizontal="16dp"
|
|
android:paddingVertical="8dp"
|
|
android:layout_weight="1"
|
|
android:layout_gravity="center_vertical"
|
|
tools:text="Title" />
|
|
|
|
<ImageView
|
|
android:id="@+id/reorder"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="start"
|
|
android:layout_marginEnd="4dp"
|
|
android:paddingHorizontal="10dp"
|
|
android:paddingVertical="8dp"
|
|
android:scaleType="center"
|
|
app:srcCompat="@drawable/ic_drag_handle_24dp"
|
|
app:tint="?android:attr/textColorHint"
|
|
tools:ignore="ContentDescription" />
|
|
|
|
</LinearLayout>
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|