summaryrefslogtreecommitdiff
path: root/src/contrib/SDL-3.2.20/test/android/res/layout
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2025-08-30 16:53:58 -0700
committer3gg <3gg@shellblade.net>2025-08-30 16:53:58 -0700
commit6aaedb813fa11ba0679c3051bc2eb28646b9506c (patch)
tree34acbfc9840e02cb4753e6306ea7ce978bf8b58e /src/contrib/SDL-3.2.20/test/android/res/layout
parent8f228ade99dd3d4c8da9b78ade1815c9adf85c8f (diff)
Update to SDL3
Diffstat (limited to 'src/contrib/SDL-3.2.20/test/android/res/layout')
-rw-r--r--src/contrib/SDL-3.2.20/test/android/res/layout/arguments_layout.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/contrib/SDL-3.2.20/test/android/res/layout/arguments_layout.xml b/src/contrib/SDL-3.2.20/test/android/res/layout/arguments_layout.xml
new file mode 100644
index 0000000..30493af
--- /dev/null
+++ b/src/contrib/SDL-3.2.20/test/android/res/layout/arguments_layout.xml
@@ -0,0 +1,26 @@
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:paddingLeft="16dp"
6 android:paddingRight="16dp"
7 android:orientation="vertical" >
8 <TextView
9 android:layout_height="wrap_content"
10 android:layout_width="wrap_content"
11 android:inputType="textImeMultiLine|textNoSuggestions"
12 android:text="@string/label_enter_arguments" />
13 <EditText
14 android:id="@+id/arguments_edit"
15 android:layout_width="match_parent"
16 android:layout_height="0dp"
17 android:layout_weight="1"
18 android:gravity="top"
19 android:hint="@string/hint_enter_arguments_here" />
20 <Button
21 android:id="@+id/arguments_start_button"
22 android:layout_width="100dp"
23 android:layout_height="wrap_content"
24 android:layout_gravity="end"
25 android:text="@string/button_start_app" />
26</LinearLayout>