123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout 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="wrap_content"
- android:orientation="vertical">
- <TextView
- android:id="@+id/pager_prefs"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingStart="16dp"
- android:paddingEnd="16dp"
- android:text="@string/pager_viewer"
- android:textAppearance="@style/TextAppearance.Medium.SubHeading" />
- <eu.kanade.tachiyomi.widget.MaterialSpinnerView
- android:id="@+id/pager_nav"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:entries="@array/pager_nav"
- app:title="@string/pref_viewer_nav" />
- <eu.kanade.tachiyomi.widget.MaterialSpinnerView
- android:id="@+id/tapping_inverted"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:entries="@array/invert_tapping_mode"
- app:title="@string/pref_read_with_tapping_inverted" />
- <eu.kanade.tachiyomi.widget.MaterialSpinnerView
- android:id="@+id/scale_type"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:entries="@array/image_scale_type"
- app:title="@string/pref_image_scale_type" />
- <eu.kanade.tachiyomi.widget.MaterialSpinnerView
- android:id="@+id/zoom_start"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:entries="@array/zoom_start"
- app:title="@string/pref_zoom_start" />
- <com.google.android.material.switchmaterial.SwitchMaterial
- android:id="@+id/crop_borders"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingStart="16dp"
- android:paddingEnd="16dp"
- android:text="@string/pref_crop_borders"
- android:textColor="?android:attr/textColorSecondary" />
- <com.google.android.material.switchmaterial.SwitchMaterial
- android:id="@+id/dual_page_split"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingStart="16dp"
- android:paddingEnd="16dp"
- android:text="@string/pref_dual_page_split"
- android:textColor="?android:attr/textColorSecondary" />
- <com.google.android.material.switchmaterial.SwitchMaterial
- android:id="@+id/dual_page_invert"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingStart="16dp"
- android:paddingEnd="16dp"
- android:text="@string/pref_dual_page_invert"
- android:textColor="?android:attr/textColorSecondary"
- android:visibility="gone"
- tools:visibility="visible" />
- <androidx.constraintlayout.widget.Group
- android:id="@+id/tapping_prefs_group"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- app:constraint_referenced_ids="pager_nav,tapping_inverted,dual_page_split,dual_page_invert" />
- </LinearLayout>
|