1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2017 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 xmlns:tools="http://schemas.android.com/tools" 21 android:layout_width="match_parent" 22 android:layout_height="wrap_content"> 23 <LinearLayout 24 android:orientation="vertical" 25 android:layout_width="match_parent" 26 android:layout_height="match_parent" 27 android:padding="@dimen/sim_content_padding"> 28 29 <TextView 30 style="@style/device_info_dialog_label" 31 android:id="@+id/operator_name_label" 32 android:layout_width="match_parent" 33 android:layout_height="wrap_content" 34 android:text="@string/status_operator"/> 35 <TextView 36 style="@style/device_info_dialog_value" 37 android:id="@+id/operator_name_value" 38 android:layout_width="match_parent" 39 android:layout_height="wrap_content" 40 android:text="@string/device_info_not_available"/> 41 42 <TextView 43 style="@style/device_info_dialog_label" 44 android:id="@+id/number_label" 45 android:layout_width="match_parent" 46 android:layout_height="wrap_content" 47 android:text="@string/status_number_sim_status"/> 48 <TextView 49 style="@style/device_info_dialog_value" 50 android:id="@+id/number_value" 51 android:layout_width="match_parent" 52 android:layout_height="wrap_content" 53 android:text="@string/device_info_not_available"/> 54 55 <TextView 56 style="@style/device_info_dialog_label" 57 android:id="@+id/data_state_label" 58 android:layout_width="match_parent" 59 android:layout_height="wrap_content" 60 android:text="@string/status_data_state"/> 61 <TextView 62 style="@style/device_info_dialog_value" 63 android:id="@+id/data_state_value" 64 android:layout_width="match_parent" 65 android:layout_height="wrap_content" 66 android:text="@string/device_info_not_available"/> 67 68 <TextView 69 style="@style/device_info_dialog_label" 70 android:id="@+id/latest_area_info_label" 71 android:layout_width="match_parent" 72 android:layout_height="wrap_content" 73 android:text="@string/status_latest_area_info"/> 74 <TextView 75 style="@style/device_info_dialog_value" 76 android:id="@+id/latest_area_info_value" 77 android:layout_width="match_parent" 78 android:layout_height="wrap_content" 79 android:text="@string/device_info_not_available"/> 80 81 <TextView 82 style="@style/device_info_dialog_label" 83 android:id="@+id/service_state_label" 84 android:layout_width="match_parent" 85 android:layout_height="wrap_content" 86 android:text="@string/status_service_state"/> 87 <TextView 88 style="@style/device_info_dialog_value" 89 android:id="@+id/service_state_value" 90 android:layout_width="match_parent" 91 android:layout_height="wrap_content" 92 android:text="@string/device_info_not_available"/> 93 94 <TextView 95 style="@style/device_info_dialog_label" 96 android:id="@+id/signal_strength_label" 97 android:layout_width="match_parent" 98 android:layout_height="wrap_content" 99 android:text="@string/status_signal_strength"/> 100 <TextView 101 style="@style/device_info_dialog_value" 102 android:id="@+id/signal_strength_value" 103 android:layout_width="match_parent" 104 android:layout_height="wrap_content" 105 android:text="@string/device_info_not_available"/> 106 107 <TextView 108 style="@style/device_info_dialog_label" 109 android:id="@+id/voice_network_type_label" 110 android:layout_width="match_parent" 111 android:layout_height="wrap_content" 112 android:text="@string/status_voice_network_type"/> 113 <TextView 114 style="@style/device_info_dialog_value" 115 android:id="@+id/voice_network_type_value" 116 android:layout_width="match_parent" 117 android:layout_height="wrap_content" 118 android:text="@string/device_info_not_available"/> 119 120 <TextView 121 style="@style/device_info_dialog_label" 122 android:id="@+id/data_network_type_label" 123 android:layout_width="match_parent" 124 android:layout_height="wrap_content" 125 android:text="@string/status_data_network_type"/> 126 <TextView 127 style="@style/device_info_dialog_value" 128 android:id="@+id/data_network_type_value" 129 android:layout_width="match_parent" 130 android:layout_height="wrap_content" 131 android:text="@string/device_info_not_available"/> 132 133 <TextView 134 style="@style/device_info_dialog_label" 135 android:id="@+id/roaming_state_label" 136 android:layout_width="match_parent" 137 android:layout_height="wrap_content" 138 android:text="@string/status_roaming"/> 139 <TextView 140 style="@style/device_info_dialog_value" 141 android:id="@+id/roaming_state_value" 142 android:layout_width="match_parent" 143 android:layout_height="wrap_content" 144 android:text="@string/device_info_not_available"/> 145 146 <TextView 147 style="@style/device_info_dialog_label" 148 android:id="@+id/icc_id_label" 149 android:layout_width="match_parent" 150 android:layout_height="wrap_content" 151 android:text="@string/status_icc_id"/> 152 <TextView 153 style="@style/device_info_dialog_value" 154 android:id="@+id/icc_id_value" 155 android:layout_width="match_parent" 156 android:layout_height="wrap_content" 157 android:text="@string/device_info_not_available"/> 158 159 <TextView 160 style="@style/device_info_dialog_label" 161 android:id="@+id/ims_reg_state_label" 162 android:layout_width="match_parent" 163 android:layout_height="wrap_content" 164 android:text="@string/ims_reg_title"/> 165 <TextView 166 style="@style/device_info_dialog_value" 167 android:id="@+id/ims_reg_state_value" 168 android:layout_width="match_parent" 169 android:layout_height="wrap_content" 170 android:text="@string/device_info_not_available"/> 171 </LinearLayout> 172</ScrollView> 173