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 android:layout_width="match_parent" 21 android:layout_height="wrap_content"> 22 <LinearLayout 23 android:orientation="vertical" 24 android:layout_width="match_parent" 25 android:layout_height="match_parent" 26 android:padding="@dimen/sim_content_padding"> 27 28 <!-- These items are only for CDMA phones --> 29 <LinearLayout 30 android:id="@+id/cdma_settings" 31 android:orientation="vertical" 32 android:layout_width="match_parent" 33 android:layout_height="wrap_content"> 34 <TextView 35 style="@style/device_info_dialog_label" 36 android:id="@+id/min_number_label" 37 android:layout_width="match_parent" 38 android:layout_height="wrap_content" 39 android:text="@string/status_min_number"/> 40 <TextView 41 style="@style/device_info_dialog_value" 42 android:id="@+id/min_number_value" 43 android:layout_width="match_parent" 44 android:layout_height="wrap_content"/> 45 46 <TextView 47 style="@style/device_info_dialog_label" 48 android:id="@+id/prl_version_label" 49 android:layout_width="match_parent" 50 android:layout_height="wrap_content" 51 android:text="@string/status_prl_version"/> 52 <TextView 53 style="@style/device_info_dialog_value" 54 android:id="@+id/prl_version_value" 55 android:layout_width="match_parent" 56 android:layout_height="wrap_content"/> 57 58 <TextView 59 style="@style/device_info_dialog_label" 60 android:id="@+id/meid_number_label" 61 android:layout_width="match_parent" 62 android:layout_height="wrap_content" 63 android:text="@string/status_meid_number"/> 64 <TextView 65 style="@style/device_info_dialog_value" 66 android:id="@+id/meid_number_value" 67 android:layout_width="match_parent" 68 android:layout_height="wrap_content"/> 69 70 </LinearLayout> 71 72 <!-- These items are for GSM and LTE enabled CDMA phones --> 73 <LinearLayout 74 android:id="@+id/gsm_settings" 75 android:orientation="vertical" 76 android:layout_width="match_parent" 77 android:layout_height="wrap_content"> 78 <TextView 79 style="@style/device_info_dialog_label" 80 android:id="@+id/imei_label" 81 android:layout_width="match_parent" 82 android:layout_height="wrap_content" 83 android:text="@string/status_imei"/> 84 <TextView 85 style="@style/device_info_dialog_value" 86 android:id="@+id/imei_value" 87 android:layout_width="match_parent" 88 android:layout_height="wrap_content"/> 89 90 <TextView 91 style="@style/device_info_dialog_label" 92 android:id="@+id/imei_sv_label" 93 android:layout_width="match_parent" 94 android:layout_height="wrap_content" 95 android:text="@string/status_imei_sv"/> 96 <TextView 97 style="@style/device_info_dialog_value" 98 android:id="@+id/imei_sv_value" 99 android:layout_width="match_parent" 100 android:layout_height="wrap_content"/> 101 </LinearLayout> 102 103 </LinearLayout> 104</ScrollView>