2015-12-20 14:10:04 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-02-21 18:43:50 -05:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2015-12-20 14:10:04 -05:00
|
|
|
|
2016-01-15 09:18:19 -05:00
|
|
|
<eu.kanade.tachiyomi.widget.MinMaxNumberPicker
|
2016-03-12 08:22:40 -05:00
|
|
|
android:id="@+id/chapters_picker"
|
2015-12-20 14:10:04 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2016-03-12 08:22:40 -05:00
|
|
|
app:max="9999"
|
2020-02-21 18:43:50 -05:00
|
|
|
app:min="0" />
|
2015-12-20 14:10:04 -05:00
|
|
|
|
2020-02-21 18:43:50 -05:00
|
|
|
</LinearLayout>
|