1<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2025 The Android Open Source Project 2 3 Licensed under the Apache License, Version 2.0 (the "License"); 4 you may not use this file except in compliance with the License. 5 You may obtain a copy of the License at 6 7 http://www.apache.org/licenses/LICENSE-2.0 8 9 Unless required by applicable law or agreed to in writing, software 10 distributed under the License is distributed on an "AS IS" BASIS, 11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 See the License for the specific language governing permissions and 13 limitations under the License. 14--> 15 16<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 17 android:layout_width="match_parent" 18 android:layout_height="match_parent" 19 android:layout_marginTop="120dp" 20 android:layoutDirection="locale" 21 android:textDirection="locale"> 22 23 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 24 android:layout_width="match_parent" 25 android:layout_height="match_parent" 26 android:orientation="vertical" 27 android:padding="16dp"> 28 29 <!-- VERSION --> 30 <LinearLayout style="@style/RadioInfo_entry_layout"> 31 <TextView android:text="@string/satellite_config_version_label" style="@style/info_label" /> 32 <TextView android:id="@+id/version" style="@style/info_value" /> 33 <View 34 android:layout_width="fill_parent" 35 android:layout_height="1dip" 36 android:background="?android:attr/listDivider"/> 37 </LinearLayout> 38 39 <View 40 android:layout_width="fill_parent" 41 android:layout_height="2dip" 42 android:background="?android:attr/listDivider" /> 43 44 <!-- cids, plmns, svcTypes --> 45 <LinearLayout style="@style/RadioInfo_entry_layout"> 46 <TextView android:text="@string/satellite_config_service_type_label" style="@style/info_label" /> 47 <TextView android:id="@+id/svc_type" style="@style/info_value" /> 48 </LinearLayout> 49 50 <View 51 android:layout_width="fill_parent" 52 android:layout_height="3dip" 53 android:background="?android:attr/listDivider"/> 54 55 <!-- allow access --> 56 <LinearLayout style="@style/RadioInfo_entry_layout"> 57 <TextView android:text="@string/satellite_config_allow_access_label" style="@style/info_label" /> 58 <TextView android:id="@+id/allow_access" style="@style/info_value" /> 59 </LinearLayout> 60 61 <View 62 android:layout_width="fill_parent" 63 android:layout_height="4dip" 64 android:background="?android:attr/listDivider"/> 65 66 <!-- country codes --> 67 <LinearLayout style="@style/RadioInfo_entry_layout"> 68 <TextView android:text="@string/satellite_config_country_code_label" style="@style/info_label" /> 69 <TextView android:id="@+id/country_codes" style="@style/info_value" /> 70 </LinearLayout> 71 72 <View 73 android:layout_width="fill_parent" 74 android:layout_height="5dip" 75 android:background="?android:attr/listDivider"/> 76 77 <!-- size of sats2dat file --> 78 <LinearLayout style="@style/RadioInfo_entry_layout"> 79 <TextView android:text="@string/satellite_config_size_of_sats2_dat_label" style="@style/info_label" /> 80 <TextView android:id="@+id/size_of_sats2" style="@style/info_value" /> 81 </LinearLayout> 82 83 <View 84 android:layout_width="fill_parent" 85 android:layout_height="1dip" 86 android:background="?android:attr/listDivider"/> 87 88 <!-- satellite access config json --> 89 <LinearLayout style="@style/entry_layout"> 90 <TextView android:text="@string/satellite_config_json_label" style="@style/info_label" /> 91 <TextView android:id="@+id/config_json" style="@style/info_value" /> 92 </LinearLayout> 93 94 </LinearLayout> 95</ScrollView> 96 97