summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAoJ Architecture Team <aoj-architecture-team@google.com>2023-10-10 12:58:50 -0700
committerCopybara-Service <copybara-worker@google.com>2023-10-10 12:59:29 -0700
commite62ad818f4f0e18152ba00e0d7d91fac79055295 (patch)
treed695485cd1f7c869c95e37b193369c3baaa9d93b
parent0fae35e38fb0cab4f15e9315a2948f44a141b68b (diff)
downloadandroid_onboarding-e62ad818f4f0e18152ba00e0d7d91fac79055295.tar.gz
external/android_onboarding: Android Onboarding ❤️ AOSP
PiperOrigin-RevId: 572341620 Change-Id: Ie982a4be55df045c696b13b0333942adaf7faba6
-rw-r--r--src/com/android/onboarding/nodes/testing/testapp/res/layout/activity_main.xml79
1 files changed, 59 insertions, 20 deletions
diff --git a/src/com/android/onboarding/nodes/testing/testapp/res/layout/activity_main.xml b/src/com/android/onboarding/nodes/testing/testapp/res/layout/activity_main.xml
index a63b138..5127e92 100644
--- a/src/com/android/onboarding/nodes/testing/testapp/res/layout/activity_main.xml
+++ b/src/com/android/onboarding/nodes/testing/testapp/res/layout/activity_main.xml
@@ -5,27 +5,66 @@
android:layout_height="match_parent"
android:orientation="vertical">
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="horizontal">
+<!-- <LinearLayout-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="match_parent"-->
+<!-- android:orientation="vertical">-->
+<!-- <TextView-->
+<!-- android:id="@+id/app1Label"-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="wrap_content"-->
+<!-- android:text="App 1" />-->
+<!-- <Button-->
+<!-- android:id="@+id/redButton2"-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="wrap_content"-->
+<!-- android:text="Launch Red" />-->
+<!-- <Button-->
+<!-- android:id="@+id/blueButton2"-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="wrap_content"-->
+<!-- android:text="Launch Blue" />-->
+<!-- <Button-->
+<!-- android:id="@+id/greenButton2"-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="wrap_content"-->
+<!-- android:text="Launch Green" />-->
+<!-- </LinearLayout>-->
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
+<!-- <TextView-->
+<!-- android:id="@+id/app2Label"-->
+<!-- android:layout_width="match_parent"-->
+<!-- android:layout_height="wrap_content"-->
+<!-- android:text="App 2" />-->
+ <Button
+ android:id="@+id/redButton"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="Launch Red" />
+ <Button
+ android:id="@+id/blueButton"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="Launch Blue" />
+ <Button
+ android:id="@+id/greenButton"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="Launch Green" />
+ </LinearLayout>
+ </LinearLayout>
<Button
- android:id="@+id/redButton"
- android:layout_width="fill_parent"
+ android:id="@+id/failNodeButton"
+ android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="Launch Red" />
+ android:layout_weight="1"
+ android:text="Fail Node" />
- <Button
- android:id="@+id/blueButton"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="Launch Blue" />
-
- <Button
- android:id="@+id/greenButton"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="Launch Green" />
-
- <Button
- android:id="@+id/visualiseButton"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="Visualise" />
</LinearLayout>