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