1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2017 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:orientation="vertical" 23 android:layout_width="match_parent" 24 android:layout_height="match_parent"> 25 26 <TextView 27 android:layout_width="match_parent" 28 android:layout_height="wrap_content" 29 android:text="@string/dialer_incoming_call_test"/> 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/set_default_dialer_image" 38 android:layout_width="wrap_content" 39 android:layout_height="wrap_content" 40 android:layout_marginRight="@dimen/js_padding" 41 android:src="@drawable/fs_indeterminate"/> 42 <TextView 43 android:layout_width="wrap_content" 44 android:layout_height="wrap_content" 45 android:text="@string/dialer_incoming_call_test_instructions" 46 android:textSize="16dp"/> 47 </LinearLayout> 48 49 <Button 50 android:id="@+id/set_default_dialer" 51 android:layout_width="wrap_content" 52 android:layout_height="wrap_content" 53 android:text="@string/voicemail_set_default_dialer_button"/> 54 55 <LinearLayout 56 android:layout_width="wrap_content" 57 android:layout_height="wrap_content" 58 android:layout_marginTop="@dimen/js_padding" 59 android:layout_marginBottom="@dimen/js_padding"> 60 <ImageView 61 android:id="@+id/dialer_incoming_call_status" 62 android:layout_width="wrap_content" 63 android:layout_height="wrap_content" 64 android:layout_marginRight="@dimen/js_padding" 65 android:src="@drawable/fs_indeterminate"/> 66 <TextView 67 android:id="@+id/dialer_check_incoming_call_explanation" 68 android:layout_width="wrap_content" 69 android:layout_height="wrap_content" 70 android:text="@string/dialer_check_incoming_call_explanation" 71 android:textSize="16dp"/> 72 </LinearLayout> 73 74 <LinearLayout 75 android:layout_width="wrap_content" 76 android:layout_height="wrap_content" 77 android:layout_marginTop="@dimen/js_padding" 78 android:layout_marginBottom="@dimen/js_padding"> 79 <ImageView 80 android:id="@+id/restore_default_dialer_image" 81 android:layout_width="wrap_content" 82 android:layout_height="wrap_content" 83 android:layout_marginRight="@dimen/js_padding" 84 android:src="@drawable/fs_indeterminate"/> 85 <TextView 86 android:id="@+id/restore_default_dialer_text" 87 android:layout_width="wrap_content" 88 android:layout_height="wrap_content" 89 android:text="@string/voicemail_restore_default_dialer_description" 90 android:textSize="16dp"/> 91 </LinearLayout> 92 93 <Button 94 android:id="@+id/restore_default_dialer" 95 android:layout_width="wrap_content" 96 android:layout_height="wrap_content" 97 android:text="@string/voicemail_restore_default_dialer_button"/> 98 99 <include layout="@layout/pass_fail_buttons"/> 100 </LinearLayout> 101</ScrollView> 102