1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  Copyright 2024 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
24        android:layout_gravity="center_horizontal"
25        android:layout_height="wrap_content"
26        android:layout_width="wrap_content"
27        android:orientation="vertical">
28
29        <LinearLayout
30            android:layout_width="wrap_content"
31            android:layout_height="wrap_content"
32            android:orientation="horizontal">
33            <Button
34                android:id="@+id/loadSdkButton"
35                android:layout_width="wrap_content"
36                android:layout_height="wrap_content"
37                android:text="@string/load_sdk"
38                android:textAllCaps="false"/>
39            <Button
40                android:id="@+id/unloadSdkButton"
41                android:layout_width="wrap_content"
42                android:layout_height="wrap_content"
43                android:text="@string/unload_sdk"
44                android:textAllCaps="false"/>
45        </LinearLayout>
46
47        <LinearLayout
48            android:layout_width="wrap_content"
49            android:layout_height="wrap_content"
50            android:orientation="horizontal">
51            <Button
52                android:id="@+id/registerAppSdkButton"
53                android:layout_width="wrap_content"
54                android:layout_height="wrap_content"
55                android:text="@string/register_app_sdk"
56                android:textAllCaps="false"/>
57            <Button
58                android:id="@+id/unregisterAppSdkButton"
59                android:layout_width="wrap_content"
60                android:layout_height="wrap_content"
61                android:text="@string/unregister_app_sdk"
62                android:textAllCaps="false"/>
63        </LinearLayout>
64
65        <LinearLayout
66            android:layout_width="wrap_content"
67            android:layout_height="wrap_content"
68            android:orientation="horizontal">
69            <Button
70                android:id="@+id/getSandboxedSdksButton"
71                android:layout_width="wrap_content"
72                android:layout_height="wrap_content"
73                android:text="@string/get_sandboxed_sdks"
74                android:textAllCaps="false"/>
75            <Button
76                android:id="@+id/getAppSdksButton"
77                android:layout_width="wrap_content"
78                android:layout_height="wrap_content"
79                android:text="@string/get_app_sdks"
80                android:textAllCaps="false"/>
81        </LinearLayout>
82
83    </LinearLayout>
84
85    <TextView
86        android:layout_gravity="center_horizontal"
87        android:layout_height="wrap_content"
88        android:layout_width="wrap_content"
89        android:text="@string/log"/>
90    <TextView
91        android:id="@+id/logView"
92        android:gravity="bottom"
93        android:scrollbars="vertical"
94        android:layout_height="match_parent"
95        android:layout_width="match_parent"
96        android:background="#FFFFFF"
97        android:textColor="#000000"/>
98</LinearLayout>
99