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/voicemail_broadcast_instructions"/> 30 31 <TextView 32 android:id="@+id/no_carrier_support" 33 android:layout_width="match_parent" 34 android:layout_height="wrap_content" 35 android:text="@string/voicemail_broadcast_no_carrier_support" 36 android:visibility="gone"/> 37 38 <LinearLayout 39 android:layout_width="wrap_content" 40 android:layout_height="wrap_content" 41 android:layout_marginTop="@dimen/js_padding" 42 android:layout_marginBottom="@dimen/js_padding"> 43 <ImageView 44 android:id="@+id/set_default_dialer_image" 45 android:layout_width="wrap_content" 46 android:layout_height="wrap_content" 47 android:src="@drawable/fs_indeterminate" 48 android:layout_marginRight="@dimen/js_padding"/> 49 <TextView 50 android:layout_width="wrap_content" 51 android:layout_height="wrap_content" 52 android:text="@string/voicemail_set_default_dialer_description" 53 android:textSize="16dp"/> 54 </LinearLayout> 55 56 <Button 57 android:id="@+id/set_default_dialer" 58 android:layout_width="wrap_content" 59 android:layout_height="wrap_content" 60 android:text="@string/voicemail_set_default_dialer_button"/> 61 62 <Button 63 android:id="@+id/call_settings_check_not_applicable" 64 android:layout_width="wrap_content" 65 android:layout_height="wrap_content" 66 android:text="@string/visual_voicemail_service_remove_sim_not_applicable"/> 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/leave_voicemail_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:id="@+id/leave_voicemail_text" 81 android:layout_width="wrap_content" 82 android:layout_height="wrap_content" 83 android:text="@string/voicemail_leave_voicemail" 84 android:textSize="16dp"/> 85 </LinearLayout> 86 87 <LinearLayout 88 android:layout_width="wrap_content" 89 android:layout_height="wrap_content" 90 android:layout_marginTop="@dimen/js_padding" 91 android:layout_marginBottom="@dimen/js_padding"> 92 <ImageView 93 android:id="@+id/restore_default_dialer_image" 94 android:layout_width="wrap_content" 95 android:layout_height="wrap_content" 96 android:src="@drawable/fs_indeterminate" 97 android:layout_marginRight="@dimen/js_padding"/> 98 <TextView 99 android:id="@+id/restore_default_dialer_text" 100 android:layout_width="wrap_content" 101 android:layout_height="wrap_content" 102 android:text="@string/voicemail_restore_default_dialer_description" 103 android:textSize="16dp"/> 104 </LinearLayout> 105 106 <Button 107 android:id="@+id/restore_default_dialer" 108 android:layout_width="wrap_content" 109 android:layout_height="wrap_content" 110 android:text="@string/voicemail_restore_default_dialer_button"/> 111 112 <include layout="@layout/pass_fail_buttons" /> 113 </LinearLayout> 114</ScrollView> 115