2021-03-27 03:31:21 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.core.widget.NestedScrollView 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"
|
2021-04-07 05:21:21 +02:00
|
|
|
android:layout_height="wrap_content">
|
2021-03-27 03:31:21 +01:00
|
|
|
|
2021-03-27 21:28:49 +01:00
|
|
|
<LinearLayout
|
2021-03-27 03:31:21 +01:00
|
|
|
android:layout_width="match_parent"
|
2021-04-07 05:21:21 +02:00
|
|
|
android:layout_height="wrap_content"
|
2021-03-27 21:28:49 +01:00
|
|
|
android:orientation="vertical">
|
2021-03-27 03:31:21 +01:00
|
|
|
|
2021-03-27 21:28:49 +01:00
|
|
|
<eu.kanade.tachiyomi.ui.reader.setting.SpinnerPreference
|
2021-03-27 03:31:21 +01:00
|
|
|
android:id="@+id/viewer"
|
2021-03-27 21:28:49 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-03-27 22:59:52 +01:00
|
|
|
android:layout_marginBottom="24dp"
|
2021-03-27 03:31:21 +01:00
|
|
|
android:entries="@array/viewers_selector"
|
2021-03-27 21:28:49 +01:00
|
|
|
app:title="@string/pref_category_for_this_series" />
|
2021-03-27 03:31:21 +01:00
|
|
|
|
|
|
|
<!-- Pager preferences -->
|
|
|
|
<include
|
|
|
|
android:id="@+id/pager_prefs_group"
|
|
|
|
layout="@layout/reader_pager_settings"
|
2021-03-27 21:28:49 +01:00
|
|
|
android:layout_width="match_parent"
|
2021-03-27 03:31:21 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
<!-- Webtoon preferences -->
|
|
|
|
<include
|
|
|
|
android:id="@+id/webtoon_prefs_group"
|
|
|
|
layout="@layout/reader_webtoon_settings"
|
2021-03-27 21:28:49 +01:00
|
|
|
android:layout_width="match_parent"
|
2021-03-27 03:31:21 +01:00
|
|
|
android:layout_height="wrap_content"
|
2021-03-27 22:59:52 +01:00
|
|
|
android:visibility="gone" />
|
2021-03-27 03:31:21 +01:00
|
|
|
|
2021-03-27 21:28:49 +01:00
|
|
|
</LinearLayout>
|
2021-03-27 03:31:21 +01:00
|
|
|
|
|
|
|
</androidx.core.widget.NestedScrollView>
|