1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2019 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16<ScrollView 17 xmlns:android="http://schemas.android.com/apk/res/android" 18 android:layout_width="match_parent" 19 android:layout_height="wrap_content"> 20 21 <LinearLayout 22 android:orientation="vertical" 23 android:layout_width="match_parent" 24 android:layout_height="wrap_content"> 25 26 <LinearLayout 27 android:orientation="vertical" 28 android:layout_width="match_parent" 29 android:layout_height="wrap_content" 30 android:paddingEnd="@dimen/sim_content_padding" 31 android:paddingStart="@dimen/sim_content_padding"> 32 33 <TextView 34 android:id="@+id/name_label" 35 android:layout_width="match_parent" 36 android:layout_height="wrap_content" 37 android:paddingTop="@dimen/sim_label_padding" 38 android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Subhead" 39 android:textColor="?android:attr/textColorPrimary" 40 android:text="@string/mobile_network_sim_name_label"/> 41 42 <EditText 43 android:id="@+id/name_edittext" 44 android:layout_width="match_parent" 45 android:layout_height="wrap_content" 46 android:inputType="text" 47 android:paddingTop="@dimen/sim_label_padding" 48 android:maxLength="50" 49 android:singleLine="true"/> 50 51 <TextView 52 android:id="@+id/color_label" 53 android:layout_width="match_parent" 54 android:layout_height="wrap_content" 55 android:paddingTop="@dimen/sim_label_padding" 56 android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Subhead" 57 android:textColor="?android:attr/textColorPrimary" 58 android:text="@string/mobile_network_sim_color_label"/> 59 60 </LinearLayout> 61 62 <Spinner 63 android:id="@+id/color_spinner" 64 android:layout_width="match_parent" 65 android:layout_height="wrap_content" 66 android:layout_marginStart="@dimen/sim_color_spinner_padding" 67 android:layout_marginEnd="@dimen/sim_color_spinner_padding"/> 68 69 <LinearLayout 70 android:orientation="vertical" 71 android:layout_width="match_parent" 72 android:layout_height="wrap_content" 73 android:paddingEnd="@dimen/sim_content_padding" 74 android:paddingStart="@dimen/sim_content_padding"> 75 76 <TextView 77 android:id="@+id/operator_name_label" 78 android:layout_width="match_parent" 79 android:layout_height="wrap_content" 80 android:paddingTop="@dimen/sim_label_padding" 81 android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Subhead" 82 android:textColor="?android:attr/textColorPrimary" 83 android:text="@string/status_operator"/> 84 85 <TextView 86 android:id="@+id/operator_name_value" 87 android:layout_width="match_parent" 88 android:layout_height="wrap_content" 89 android:text="@string/device_info_not_available"/> 90 91 <TextView 92 android:id="@+id/number_label" 93 android:layout_width="match_parent" 94 android:layout_height="wrap_content" 95 android:paddingTop="@dimen/sim_label_padding" 96 android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Subhead" 97 android:textColor="?android:attr/textColorPrimary" 98 android:text="@string/status_number_sim_status"/> 99 100 <TextView 101 android:id="@+id/number_value" 102 android:layout_width="match_parent" 103 android:layout_height="wrap_content" 104 android:text="@string/device_info_not_available"/> 105 106 </LinearLayout> 107 108 </LinearLayout> 109</ScrollView> 110