mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
415df2357c
* Use Kotlin JDK8 * Satisfy a ton of lints * Run res/layout files (and manifest) through reformatter
57 lines
1.9 KiB
XML
57 lines
1.9 KiB
XML
<?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"
|
|
android:baselineAligned="false"
|
|
android:orientation="horizontal"
|
|
android:paddingStart="@dimen/dialog_content_padding"
|
|
android:paddingTop="@dimen/dialog_margin_top_content"
|
|
android:paddingEnd="@dimen/dialog_content_padding"
|
|
android:paddingBottom="@dimen/dialog_content_padding">
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/portrait" />
|
|
|
|
<eu.kanade.tachiyomi.widget.MinMaxNumberPicker
|
|
android:id="@+id/portrait_columns"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:descendantFocusability="blocksDescendants"
|
|
app:max="10"
|
|
app:min="0" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/landscape" />
|
|
|
|
<eu.kanade.tachiyomi.widget.MinMaxNumberPicker
|
|
android:id="@+id/landscape_columns"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:descendantFocusability="blocksDescendants"
|
|
app:max="10"
|
|
app:min="0" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|