1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 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<ScrollView
19    xmlns:android="http://schemas.android.com/apk/res/android"
20    android:layout_width="match_parent"
21    android:layout_height="wrap_content"
22    android:orientation="vertical"
23    android:gravity="center"
24    android:paddingTop="10dp"
25    android:paddingBottom="10dp"
26    android:paddingLeft="4dp">
27
28    <LinearLayout
29        android:layout_width="match_parent"
30        android:layout_height="wrap_content"
31        android:orientation="vertical" >
32
33        <TextView
34            android:layout_width="wrap_content"
35            android:layout_height="wrap_content"
36            android:layout_weight="0"
37            android:textColor="@android:color/holo_blue_dark"
38            android:textSize="20dp"
39            android:text="Available Satellite APIs"/>
40        <Button
41            android:id="@+id/SatelliteControl"
42            android:layout_width="match_parent"
43            android:layout_height="wrap_content"
44            android:paddingRight="4dp"
45            android:text="@string/SatelliteControl"/>
46        <Button
47            android:id="@+id/Datagram"
48            android:layout_width="match_parent"
49            android:layout_height="wrap_content"
50            android:paddingRight="4dp"
51            android:text="@string/Datagram"/>
52        <Button
53            android:id="@+id/Provisioning"
54            android:layout_width="match_parent"
55            android:layout_height="wrap_content"
56            android:paddingRight="4dp"
57            android:text="@string/Provisioning"/>
58        <Button
59            android:id="@+id/MultipleSendReceive"
60            android:layout_width="match_parent"
61            android:layout_height="wrap_content"
62            android:paddingRight="4dp"
63            android:text="@string/MultipleSendReceive"/>
64        <Button
65             android:id="@+id/SendReceive"
66             android:layout_width="match_parent"
67             android:layout_height="wrap_content"
68             android:paddingRight="4dp"
69             android:text="@string/SendReceive"/>
70        <Button
71            android:id="@+id/NbIotSatellite"
72            android:layout_width="match_parent"
73            android:layout_height="wrap_content"
74            android:paddingStart="4dp"
75            android:paddingEnd="4dp"
76            android:text="@string/NbIotSatellite"/>
77        <Button
78            android:id="@+id/TestSatelliteWrapper"
79            android:layout_width="match_parent"
80            android:layout_height="wrap_content"
81            android:paddingStart="4dp"
82            android:paddingEnd="4dp"
83            android:text="@string/TestSatelliteWrapper"/>
84    </LinearLayout>
85</ScrollView>
86