1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:id="@+id/bg"
4    android:layout_width="match_parent"
5    android:layout_height="match_parent"
6    android:orientation="vertical">
7  <TextView
8      android:id="@+id/packageName"
9      android:layout_width="match_parent"
10      android:layout_height="wrap_content"
11      android:text="" />
12  <TextView
13      android:id="@+id/status"
14      android:layout_width="match_parent"
15      android:layout_height="wrap_content"
16      android:text="" />
17  <EditText
18      android:id="@+id/argument"
19      android:layout_width="match_parent"
20      android:layout_height="wrap_content"
21      android:ems="10"
22      android:hint="Argument/Result"
23      android:inputType="text" />
24  <Spinner
25      android:id="@+id/processSpinner"
26      android:layout_width="match_parent"
27      android:layout_height="wrap_content" />
28  <Spinner
29      android:id="@+id/contractSpinner"
30      android:layout_width="match_parent"
31      android:layout_height="wrap_content" />
32
33  <Button
34      android:id="@+id/startActivityButton"
35      android:layout_width="fill_parent"
36      android:layout_height="wrap_content"
37      android:text="Start Activity" />
38  <Button
39      android:id="@+id/startActivityAndForwardButton"
40      android:layout_width="fill_parent"
41      android:layout_height="wrap_content"
42      android:text="Start Activity and Forward" />
43  <Button
44      android:id="@+id/startActivityForResultButton"
45      android:layout_width="fill_parent"
46      android:layout_height="wrap_content"
47      android:text="Start Activity For Result" />
48  <Button
49      android:id="@+id/startActivityAndFinishButton"
50      android:layout_width="fill_parent"
51      android:layout_height="wrap_content"
52      android:text="Start Activity And Finish" />
53  <Button
54      android:id="@+id/failNodeButton"
55      android:layout_width="fill_parent"
56      android:layout_height="wrap_content"
57      android:text="Fail Node" />
58  <Button
59      android:id="@+id/crashButton"
60      android:layout_width="fill_parent"
61      android:layout_height="wrap_content"
62      android:text="Crash" />
63  <Button
64      android:id="@+id/finishButton"
65      android:layout_width="fill_parent"
66      android:layout_height="wrap_content"
67      android:text="Finish" />
68  <Button
69      android:id="@+id/setResultAndFinishButton"
70      android:layout_width="fill_parent"
71      android:layout_height="wrap_content"
72      android:text="Set Result and Finish" />
73  <Button
74      android:id="@+id/startServiceButton"
75      android:layout_width="fill_parent"
76      android:layout_height="wrap_content"
77      android:text="Start Service" />
78  <Button
79      android:id="@+id/startServiceUsingKeepAliveButton"
80      android:layout_width="fill_parent"
81      android:layout_height="wrap_content"
82      android:text="Start Service using Keep Alive" />
83  <Button
84      android:id="@+id/stopServiceButton"
85      android:layout_width="fill_parent"
86      android:layout_height="wrap_content"
87      android:text="Stop Service" />
88</LinearLayout>
89