2015-12-27 08:58:36 -05:00
|
|
|
<?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"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingBottom="@dimen/dialog_content_padding"
|
2016-01-09 12:23:38 -05:00
|
|
|
android:paddingLeft="@dimen/dialog_content_padding"
|
|
|
|
android:paddingRight="@dimen/dialog_content_padding"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:paddingTop="@dimen/dialog_margin_top_content">
|
2015-12-27 08:58:36 -05:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical">
|
2015-12-27 08:58:36 -05:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/portrait"/>
|
|
|
|
|
2016-01-15 09:18:19 -05:00
|
|
|
<eu.kanade.tachiyomi.widget.MinMaxNumberPicker
|
2015-12-27 08:58:36 -05:00
|
|
|
android:id="@+id/portrait_columns"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-05-13 18:45:14 -04:00
|
|
|
android:descendantFocusability="blocksDescendants"
|
2016-03-12 08:22:40 -05:00
|
|
|
app:max="10"
|
|
|
|
app:min="0"/>
|
2015-12-27 08:58:36 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2016-03-12 08:22:40 -05:00
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical">
|
2015-12-27 08:58:36 -05:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/landscape"/>
|
|
|
|
|
2016-01-15 09:18:19 -05:00
|
|
|
<eu.kanade.tachiyomi.widget.MinMaxNumberPicker
|
2015-12-27 08:58:36 -05:00
|
|
|
android:id="@+id/landscape_columns"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-05-13 18:45:14 -04:00
|
|
|
android:descendantFocusability="blocksDescendants"
|
2016-03-12 08:22:40 -05:00
|
|
|
app:max="10"
|
|
|
|
app:min="0"/>
|
2015-12-27 08:58:36 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|