diff options
| author | Jules Aguillon | 2023-04-02 13:28:10 +0200 |
|---|---|---|
| committer | Jules Aguillon | 2023-04-02 13:29:53 +0200 |
| commit | 351355b3a769d2b584733ad0e8924dfe75939fb6 (patch) | |
| tree | 9256361692887ea9cf82e14f33118062a936abd9 /res/layout | |
| parent | 3caca59ff43e09578838d213b9c2f94c072b0832 (diff) | |
| download | unexpected-keyboard-351355b3a769d2b584733ad0e8924dfe75939fb6.tar.gz unexpected-keyboard-351355b3a769d2b584733ad0e8924dfe75939fb6.zip | |
Launcher activity: Input box
For trying the keyboard without having to mess with an other app.
Diffstat (limited to 'res/layout')
| -rw-r--r-- | res/layout/launcher_activity.xml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/res/layout/launcher_activity.xml b/res/layout/launcher_activity.xml index 424e98d..dbd6b33 100644 --- a/res/layout/launcher_activity.xml +++ b/res/layout/launcher_activity.xml @@ -1,6 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:padding="16dp"> - <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/launcher_description"/> - <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginVertical="16dp" android:text="@string/launcher_button_imesettings" android:onClick="launch_imesettings"/> - <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/launcher_sourcecode" android:autoLink="web"/> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> + <TextView style="@style/paragraph" android:text="@string/launcher_description"/> + <Button style="@style/paragraph" android:text="@string/launcher_button_imesettings" android:onClick="launch_imesettings" android:layout_width="wrap_content"/> + <TextView style="@style/paragraph" android:text="@string/launcher_sourcecode" android:autoLink="web"/> + <TextView android:id="@+id/launcher_tryhere_text" style="@style/paragraph" android:text="@string/launcher_tryhere"/> + <EditText android:id="@+id/launcher_tryhere_area" style="@style/paragraph" android:inputType="text"/> </LinearLayout> |
