1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2016 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 17<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 18 android:fitsSystemWindows="true" 19 android:layout_width="match_parent" 20 android:layout_height="match_parent" 21 style="@style/RootLayoutPadding"> 22 <LinearLayout 23 android:layout_width="match_parent" 24 android:layout_height="match_parent" 25 android:orientation="vertical"> 26 <TextView 27 android:layout_width="match_parent" 28 android:layout_height="wrap_content" 29 android:text="@string/visual_voicemail_service_instructions"/> 30 31 <LinearLayout 32 android:layout_width="wrap_content" 33 android:layout_height="wrap_content" 34 android:layout_marginTop="@dimen/js_padding" 35 android:layout_marginBottom="@dimen/js_padding"> 36 <ImageView 37 android:id="@+id/remove_sim_before_test_image" 38 android:layout_width="wrap_content" 39 android:layout_height="wrap_content" 40 android:src="@drawable/fs_indeterminate" 41 android:layout_marginRight="@dimen/js_padding"/> 42 <TextView 43 android:id="@+id/remove_sim_before_test_text" 44 android:layout_width="wrap_content" 45 android:layout_height="wrap_content" 46 android:text="@string/visual_voicemail_service_remove_sim_before_test" 47 android:textSize="16dp"/> 48 </LinearLayout> 49 50 <LinearLayout 51 android:layout_width="wrap_content" 52 android:layout_height="wrap_content" 53 android:layout_marginTop="@dimen/js_padding" 54 android:layout_marginBottom="@dimen/js_padding"> 55 <Button 56 android:id="@+id/remove_sim_ok" 57 android:layout_width="wrap_content" 58 android:layout_height="wrap_content" 59 android:text="@string/visual_voicemail_service_remove_sim_ok"/> 60 <Button 61 android:id="@+id/remove_sim_not_applicable" 62 android:layout_width="wrap_content" 63 android:layout_height="wrap_content" 64 android:text="@string/visual_voicemail_service_remove_sim_not_applicable" 65 /> 66 </LinearLayout> 67 68 <LinearLayout 69 android:layout_width="wrap_content" 70 android:layout_height="wrap_content" 71 android:layout_marginTop="@dimen/js_padding" 72 android:layout_marginBottom="@dimen/js_padding"> 73 <ImageView 74 android:id="@+id/set_default_dialer_image" 75 android:layout_width="wrap_content" 76 android:layout_height="wrap_content" 77 android:src="@drawable/fs_indeterminate" 78 android:layout_marginRight="@dimen/js_padding"/> 79 <TextView 80 android:layout_width="wrap_content" 81 android:layout_height="wrap_content" 82 android:text="@string/voicemail_set_default_dialer_description" 83 android:textSize="16dp"/> 84 </LinearLayout> 85 86 <Button 87 android:id="@+id/set_default_dialer" 88 android:layout_width="wrap_content" 89 android:layout_height="wrap_content" 90 android:text="@string/voicemail_set_default_dialer_button"/> 91 92 <LinearLayout 93 android:layout_width="wrap_content" 94 android:layout_height="wrap_content" 95 android:layout_marginTop="@dimen/js_padding" 96 android:layout_marginBottom="@dimen/js_padding"> 97 <ImageView 98 android:id="@+id/insert_sim_image" 99 android:layout_width="wrap_content" 100 android:layout_height="wrap_content" 101 android:src="@drawable/fs_indeterminate" 102 android:layout_marginRight="@dimen/js_padding"/> 103 <TextView 104 android:id="@+id/insert_sim_text" 105 android:layout_width="wrap_content" 106 android:layout_height="wrap_content" 107 android:text="@string/visual_voicemail_service_insert_sim" 108 android:textSize="16dp"/> 109 </LinearLayout> 110 111 <LinearLayout 112 android:layout_width="wrap_content" 113 android:layout_height="wrap_content" 114 android:layout_marginTop="@dimen/js_padding" 115 android:layout_marginBottom="@dimen/js_padding"> 116 <ImageView 117 android:id="@+id/remove_sim_image" 118 android:layout_width="wrap_content" 119 android:layout_height="wrap_content" 120 android:src="@drawable/fs_indeterminate" 121 android:layout_marginRight="@dimen/js_padding"/> 122 <TextView 123 android:id="@+id/remove_sim_text" 124 android:layout_width="wrap_content" 125 android:layout_height="wrap_content" 126 android:text="@string/visual_voicemail_service_remove_sim" 127 android:textSize="16dp"/> 128 </LinearLayout> 129 130 131 <LinearLayout 132 android:layout_width="wrap_content" 133 android:layout_height="wrap_content" 134 android:layout_marginTop="@dimen/js_padding" 135 android:layout_marginBottom="@dimen/js_padding"> 136 <ImageView 137 android:id="@+id/restore_default_dialer_image" 138 android:layout_width="wrap_content" 139 android:layout_height="wrap_content" 140 android:src="@drawable/fs_indeterminate" 141 android:layout_marginRight="@dimen/js_padding"/> 142 <TextView 143 android:id="@+id/restore_default_dialer_text" 144 android:layout_width="wrap_content" 145 android:layout_height="wrap_content" 146 android:text="@string/voicemail_restore_default_dialer_description" 147 android:textSize="16dp"/> 148 </LinearLayout> 149 150 <Button 151 android:id="@+id/restore_default_dialer" 152 android:layout_width="wrap_content" 153 android:layout_height="wrap_content" 154 android:text="@string/voicemail_restore_default_dialer_button"/> 155 156 <include layout="@layout/pass_fail_buttons" /> 157 </LinearLayout> 158</ScrollView> 159