mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-03 21:24:46 +00:00
always show text field in color settings
This commit is contained in:
parent
b797ebd064
commit
9a7968ea14
1 changed files with 23 additions and 16 deletions
|
@ -2,24 +2,31 @@
|
||||||
<!--
|
<!--
|
||||||
SPDX-License-Identifier: GPL-3.0-only
|
SPDX-License-Identifier: GPL-3.0-only
|
||||||
-->
|
-->
|
||||||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
<LinearLayout
|
<ScrollView
|
||||||
android:orientation="vertical"
|
|
||||||
android:paddingTop="6dp"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="match_parent"
|
||||||
|
android:layout_alignParentTop="true"
|
||||||
|
android:layout_above="@id/dummy_text">
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/color_settings_container"
|
android:orientation="vertical"
|
||||||
|
android:paddingTop="6dp"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content">
|
||||||
android:orientation="vertical" />
|
<LinearLayout
|
||||||
<EditText
|
android:id="@+id/color_settings_container"
|
||||||
android:id="@+id/dummy_text"
|
android:layout_width="match_parent"
|
||||||
android:hint="@string/hint_show_keyboard"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="16dp"
|
android:orientation="vertical" />
|
||||||
android:layout_width="match_parent"
|
</LinearLayout>
|
||||||
android:layout_height="wrap_content"/>
|
</ScrollView>
|
||||||
</LinearLayout>
|
<EditText
|
||||||
</ScrollView>
|
android:id="@+id/dummy_text"
|
||||||
|
android:hint="@string/hint_show_keyboard"
|
||||||
|
android:layout_marginHorizontal="16dp"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_alignParentBottom="true"/>
|
||||||
|
</RelativeLayout>
|
||||||
|
|
Loading…
Add table
Reference in a new issue