mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-24 21:12:35 -04:00
ae97bb0445
* Use Material Components' dialogs For all dialogs that has direct replacement. * Convert text input dialogs * Convert quad-state multi choices dialogs * Convert date picker dialogs This also changes the flow to remove selected start/finish tracking date and the track item itself * Remove material-dialogs dependencies
18 lines
941 B
XML
18 lines
941 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<eu.kanade.tachiyomi.widget.materialdialogs.QuadStateTextView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
style="?attr/materialAlertDialogBodyTextStyle"
|
|
android:id="@+id/quad_state_control"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:minHeight="?attr/listPreferredItemHeightSmall"
|
|
android:gravity="start|center_vertical"
|
|
android:textAlignment="viewStart"
|
|
android:paddingStart="@dimen/abc_select_dialog_padding_start_material"
|
|
android:paddingEnd="?attr/dialogPreferredPadding"
|
|
android:drawablePadding="20dp"
|
|
android:ellipsize="marquee"
|
|
app:drawableStartCompat="@drawable/ic_check_box_outline_blank_24dp"
|
|
tools:text="Quad-state item" />
|