1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2018 The Android Open Source Project
4  ~
5  ~ Licensed under the Apache License, Version 2.0 (the "License");
6  ~ you may not use this file except in compliance with the License.
7  ~ You may obtain a copy of the License at
8  ~
9  ~      http://www.apache.org/licenses/LICENSE-2.0
10  ~
11  ~ Unless required by applicable law or agreed to in writing, software
12  ~ distributed under the License is distributed on an "AS IS" BASIS,
13  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  ~ See the License for the specific language governing permissions and
15  ~ limitations under the License
16  -->
17
18<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
19              android:orientation="vertical"
20              android:layout_width="match_parent"
21              android:layout_height="match_parent">
22
23    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
24                  android:orientation="horizontal"
25                  android:layout_width="match_parent"
26                  android:layout_height="wrap_content">
27        <TextView
28            android:id="@+id/sub_id"
29            android:text="subId: "
30            android:layout_width="wrap_content"
31            android:layout_height="wrap_content"
32            android:maxLines="1"
33            android:textSize="20sp" />
34
35        <EditText
36            android:id="@+id/sub_id_value"
37            android:text="-1"
38            android:layout_width="wrap_content"
39            android:layout_height="wrap_content"
40            android:maxLines="1"
41            android:textSize="20sp" />
42    </LinearLayout>
43
44    <TextView
45        android:id="@+id/tags"
46        android:layout_width="fill_parent"
47        android:layout_height="wrap_content"
48        android:layout_alignParentBottom="true"
49        android:layout_alignParentRight="true"
50        android:ellipsize="marquee"
51        android:maxLines="1"
52        android:textSize="15sp" />
53
54    <TextView
55        android:id="@+id/method_name"
56        android:layout_width="fill_parent"
57        android:layout_height="wrap_content"
58        android:ellipsize="marquee"
59        android:textSize="30sp" />
60
61    <LinearLayout
62        android:id="@+id/method_params"
63        android:orientation="vertical"
64        android:layout_height="wrap_content"
65        android:layout_width="fill_parent">
66    </LinearLayout>
67
68    <Button
69        android:id="@+id/go_button"
70        android:title="Go"
71        android:text="Go!"
72        android:layout_width="80dip"
73        android:layout_height="50dip">
74    </Button>
75
76    <ScrollView
77        android:id="@+id/return_value_wrapper"
78        android:layout_width="fill_parent"
79        android:layout_height="wrap_content"
80        android:scrollbars="vertical"
81        android:fillViewport="true">
82        <TextView
83            android:id="@+id/return_value"
84            android:layout_width="fill_parent"
85            android:layout_height="fill_parent"
86            android:ellipsize="marquee"
87            android:textSize="15sp" />
88    </ScrollView>
89</LinearLayout>
90