tachiyomi/app/src/main/res/layout/track_chapters_dialog.xml

17 lines
571 B
XML
Raw Normal View History

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