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