aboutsummaryrefslogtreecommitdiff
path: root/examples/basicapp/java/com/basicapp/res/layout/basic_activity.xml
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-07-07 05:09:56 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-07-07 05:09:56 +0000
commitedfb3a69dfa5453c0a46930f62f4d34aaeaaac9b (patch)
tree34d720e66745b8daf1632bb1fcd89fb9c0a40894 /examples/basicapp/java/com/basicapp/res/layout/basic_activity.xml
parent7f7740c9ea674bf465c2afe0496065f7a6a0449e (diff)
parentfe4d9ac26508ce8bf14d0bb56f97499664f561a4 (diff)
downloadbazelbuild-rules_android-android14-mainline-uwb-release.tar.gz
Change-Id: I08eb81878268408c262a58012df82270158f167b
Diffstat (limited to 'examples/basicapp/java/com/basicapp/res/layout/basic_activity.xml')
-rw-r--r--examples/basicapp/java/com/basicapp/res/layout/basic_activity.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/basicapp/java/com/basicapp/res/layout/basic_activity.xml b/examples/basicapp/java/com/basicapp/res/layout/basic_activity.xml
new file mode 100644
index 0000000..f84199c
--- /dev/null
+++ b/examples/basicapp/java/com/basicapp/res/layout/basic_activity.xml
@@ -0,0 +1,23 @@
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical" >
+
+ <TextView
+ android:id="@+id/text_hello"
+ android:text="@string/hello_world"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content" />
+
+ <Button
+ android:id="@+id/button_id_fizz"
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ android:text="fizz" />
+ <Button
+ android:id="@+id/button_id_buzz"
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ android:text="buzz" />
+
+</LinearLayout>