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<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:paddingStart="4dp" 25 android:paddingEnd="4dp"> 26 27 <TextView 28 android:layout_width="wrap_content" 29 android:layout_height="0dp" 30 android:layout_weight="0" 31 android:textColor="@android:color/holo_blue_dark" 32 android:textSize="20sp" 33 android:text="@string/NbIotSatellite"/> 34 <Button 35 android:id="@+id/testRegisterForSupportedStateChanged" 36 android:layout_width="match_parent" 37 android:layout_height="wrap_content" 38 android:paddingStart="4dp" 39 android:paddingEnd="4dp" 40 android:text="@string/testRegisterForSupportedStateChanged"/> 41 <Button 42 android:id="@+id/testUnregisterForSupportedStateChanged" 43 android:layout_width="match_parent" 44 android:layout_height="wrap_content" 45 android:paddingStart="4dp" 46 android:paddingEnd="4dp" 47 android:text="@string/testUnregisterForSupportedStateChanged"/> 48 <Button 49 android:id="@+id/testRequestIsSupported" 50 android:layout_width="match_parent" 51 android:layout_height="wrap_content" 52 android:paddingStart="4dp" 53 android:paddingEnd="4dp" 54 android:text="@string/testRequestIsSupported"/> 55 <Button 56 android:id="@+id/reportSatelliteSupportedFromModem" 57 android:layout_width="match_parent" 58 android:layout_height="wrap_content" 59 android:paddingStart="4dp" 60 android:paddingEnd="4dp" 61 android:text="@string/reportSatelliteSupportedFromModem"/> 62 <Button 63 android:id="@+id/reportSatelliteNotSupportedFromModem" 64 android:layout_width="match_parent" 65 android:layout_height="wrap_content" 66 android:paddingStart="4dp" 67 android:paddingEnd="4dp" 68 android:text="@string/reportSatelliteNotSupportedFromModem"/> 69 <Button 70 android:id="@+id/showCurrentSatelliteSupportedStated" 71 android:layout_width="match_parent" 72 android:layout_height="wrap_content" 73 android:paddingStart="4dp" 74 android:paddingEnd="4dp" 75 android:text="@string/showCurrentSatelliteSupportedStated"/> 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:paddingStart="4dp" 85 android:paddingEnd="4dp" 86 android:text="@string/Back"/> 87 <TextView 88 android:id="@+id/text_id" 89 android:layout_width="300dp" 90 android:layout_height="200dp" 91 android:textColor="@android:color/holo_blue_light" 92 android:textSize="15sp" /> 93</LinearLayout> 94