• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2023 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
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:paddingLeft="4dp">
25
26    <LinearLayout
27        android:layout_width="match_parent"
28        android:layout_height="wrap_content"
29        android:orientation="vertical" >
30
31        <TextView
32            android:layout_width="wrap_content"
33            android:layout_height="wrap_content"
34            android:layout_weight="0"
35            android:textColor="@android:color/holo_blue_dark"
36            android:textSize="20dp"
37            android:text="Provisioning APIs"/>
38        <Button
39            android:id="@+id/provisionSatelliteService"
40            android:layout_width="match_parent"
41            android:layout_height="wrap_content"
42            android:paddingRight="4dp"
43            android:text="@string/provisionSatelliteService"/>
44        <Button
45            android:id="@+id/deprovisionSatelliteService"
46            android:layout_width="match_parent"
47            android:layout_height="wrap_content"
48            android:paddingRight="4dp"
49            android:text="@string/deprovisionSatelliteService"/>
50        <Button
51            android:id="@+id/requestIsSatelliteProvisioned"
52            android:layout_width="match_parent"
53            android:layout_height="wrap_content"
54            android:paddingRight="4dp"
55            android:text="@string/requestIsSatelliteProvisioned"/>
56         <Button
57            android:id="@+id/registerForSatelliteProvisionStateChanged"
58            android:layout_width="match_parent"
59            android:layout_height="wrap_content"
60            android:paddingRight="4dp"
61            android:text="@string/registerForSatelliteProvisionStateChanged"/>
62        <Button
63            android:id="@+id/unregisterForSatelliteProvisionStateChanged"
64            android:layout_width="match_parent"
65            android:layout_height="wrap_content"
66            android:paddingRight="4dp"
67            android:text="@string/unregisterForSatelliteProvisionStateChanged"/>
68        <Button
69            android:id="@+id/showCurrentSatelliteProvisionState"
70            android:layout_width="match_parent"
71            android:layout_height="wrap_content"
72            android:paddingRight="4dp"
73            android:text="@string/showCurrentSatelliteProvisionState"/>
74        <Button
75            android:id="@+id/Back"
76            android:onClick="Back"
77            android:textColor="@android:color/holo_blue_dark"
78            android:layout_marginTop="100dp"
79            android:layout_gravity="center"
80            android:layout_width="wrap_content"
81            android:layout_height="wrap_content"
82            android:paddingRight="4dp"
83            android:text="@string/Back"/>
84        <TextView
85            android:id="@+id/text_id"
86            android:layout_width="300dp"
87            android:layout_height="200dp"
88            android:capitalize="characters"
89            android:textColor="@android:color/holo_blue_light"
90            android:layout_centerVertical="true"
91            android:textSize="15dp" />
92    </LinearLayout>
93</LinearLayout>
94