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