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="0dp" 36 android:layout_weight="0" 37 android:textColor="@android:color/holo_blue_dark" 38 android:textSize="20sp" 39 android:text="@string/NbIotSatellite"/> 40 <Button 41 android:id="@+id/testRegisterForSupportedStateChanged" 42 android:layout_width="match_parent" 43 android:layout_height="wrap_content" 44 android:paddingStart="4dp" 45 android:paddingEnd="4dp" 46 android:text="@string/testRegisterForSupportedStateChanged"/> 47 <Button 48 android:id="@+id/testUnregisterForSupportedStateChanged" 49 android:layout_width="match_parent" 50 android:layout_height="wrap_content" 51 android:paddingStart="4dp" 52 android:paddingEnd="4dp" 53 android:text="@string/testUnregisterForSupportedStateChanged"/> 54 <Button 55 android:id="@+id/testRequestIsSupported" 56 android:layout_width="match_parent" 57 android:layout_height="wrap_content" 58 android:paddingStart="4dp" 59 android:paddingEnd="4dp" 60 android:text="@string/testRequestIsSupported"/> 61 <Button 62 android:id="@+id/reportSatelliteSupportedFromModem" 63 android:layout_width="match_parent" 64 android:layout_height="wrap_content" 65 android:paddingStart="4dp" 66 android:paddingEnd="4dp" 67 android:text="@string/reportSatelliteSupportedFromModem"/> 68 <Button 69 android:id="@+id/reportSatelliteNotSupportedFromModem" 70 android:layout_width="match_parent" 71 android:layout_height="wrap_content" 72 android:paddingStart="4dp" 73 android:paddingEnd="4dp" 74 android:text="@string/reportSatelliteNotSupportedFromModem"/> 75 <Button 76 android:id="@+id/showCurrentSatelliteSupportedStated" 77 android:layout_width="match_parent" 78 android:layout_height="wrap_content" 79 android:paddingStart="4dp" 80 android:paddingEnd="4dp" 81 android:text="@string/showCurrentSatelliteSupportedStated"/> 82 <Button 83 android:id="@+id/Back" 84 android:onClick="Back" 85 android:textColor="@android:color/holo_blue_dark" 86 android:layout_marginTop="100dp" 87 android:layout_gravity="center" 88 android:layout_width="wrap_content" 89 android:layout_height="wrap_content" 90 android:paddingStart="4dp" 91 android:paddingEnd="4dp" 92 android:text="@string/Back"/> 93 <TextView 94 android:id="@+id/text_id" 95 android:layout_width="300dp" 96 android:layout_height="200dp" 97 android:textColor="@android:color/holo_blue_light" 98 android:textSize="15sp" /> 99 </LinearLayout> 100</ScrollView> 101