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<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="Provisioning APIs"/> 40 <Button 41 android:id="@+id/provisionSatelliteService" 42 android:layout_width="match_parent" 43 android:layout_height="wrap_content" 44 android:paddingRight="4dp" 45 android:text="@string/provisionSatelliteService"/> 46 <Button 47 android:id="@+id/deprovisionSatelliteService" 48 android:layout_width="match_parent" 49 android:layout_height="wrap_content" 50 android:paddingRight="4dp" 51 android:text="@string/deprovisionSatelliteService"/> 52 <Button 53 android:id="@+id/requestIsSatelliteProvisioned" 54 android:layout_width="match_parent" 55 android:layout_height="wrap_content" 56 android:paddingRight="4dp" 57 android:text="@string/requestIsSatelliteProvisioned"/> 58 <Button 59 android:id="@+id/registerForSatelliteProvisionStateChanged" 60 android:layout_width="match_parent" 61 android:layout_height="wrap_content" 62 android:paddingRight="4dp" 63 android:text="@string/registerForSatelliteProvisionStateChanged"/> 64 <Button 65 android:id="@+id/unregisterForSatelliteProvisionStateChanged" 66 android:layout_width="match_parent" 67 android:layout_height="wrap_content" 68 android:paddingRight="4dp" 69 android:text="@string/unregisterForSatelliteProvisionStateChanged"/> 70 <Button 71 android:id="@+id/showCurrentSatelliteProvisionState" 72 android:layout_width="match_parent" 73 android:layout_height="wrap_content" 74 android:paddingRight="4dp" 75 android:text="@string/showCurrentSatelliteProvisionState"/> 76 <Button 77 android:id="@+id/Back" 78 android:onClick="Back" 79 android:textColor="@android:color/holo_blue_dark" 80 android:layout_marginTop="100dp" 81 android:layout_gravity="center" 82 android:layout_width="wrap_content" 83 android:layout_height="wrap_content" 84 android:paddingRight="4dp" 85 android:text="@string/Back"/> 86 <TextView 87 android:id="@+id/text_id" 88 android:layout_width="300dp" 89 android:layout_height="200dp" 90 android:capitalize="characters" 91 android:textColor="@android:color/holo_blue_light" 92 android:layout_centerVertical="true" 93 android:textSize="15dp" /> 94 </LinearLayout> 95</ScrollView> 96