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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 18 android:orientation="vertical" 19 android:layout_width="match_parent" 20 android:layout_height="match_parent"> 21 <TextView 22 android:layout_width="match_parent" 23 android:layout_height="wrap_content" 24 android:text="@string/voicemail_broadcast_instructions"/> 25 <LinearLayout 26 android:layout_width="wrap_content" 27 android:layout_height="wrap_content" 28 android:layout_marginTop="@dimen/js_padding" 29 android:layout_marginBottom="@dimen/js_padding"> 30 <ImageView 31 android:id="@+id/set_default_dialer_image" 32 android:layout_width="wrap_content" 33 android:layout_height="wrap_content" 34 android:src="@drawable/fs_indeterminate" 35 android:layout_marginRight="@dimen/js_padding"/> 36 <TextView 37 android:layout_width="wrap_content" 38 android:layout_height="wrap_content" 39 android:text="@string/voicemail_set_default_dialer_description" 40 android:textSize="16dp"/> 41 </LinearLayout> 42 43 <Button 44 android:id="@+id/set_default_dialer" 45 android:layout_width="wrap_content" 46 android:layout_height="wrap_content" 47 android:text="@string/voicemail_set_default_dialer_button"/> 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 <ImageView 55 android:id="@+id/leave_voicemail_image" 56 android:layout_width="wrap_content" 57 android:layout_height="wrap_content" 58 android:src="@drawable/fs_indeterminate" 59 android:layout_marginRight="@dimen/js_padding"/> 60 <TextView 61 android:id="@+id/leave_voicemail_text" 62 android:layout_width="wrap_content" 63 android:layout_height="wrap_content" 64 android:text="@string/voicemail_leave_voicemail" 65 android:textSize="16dp"/> 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/restore_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:id="@+id/restore_default_dialer_text" 81 android:layout_width="wrap_content" 82 android:layout_height="wrap_content" 83 android:text="@string/voicemail_restore_default_dialer_description" 84 android:textSize="16dp"/> 85 </LinearLayout> 86 87 <Button 88 android:id="@+id/restore_default_dialer" 89 android:layout_width="wrap_content" 90 android:layout_height="wrap_content" 91 android:text="@string/voicemail_restore_default_dialer_button"/> 92 93 <include layout="@layout/pass_fail_buttons" /> 94 </LinearLayout>