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:fitsSystemWindows="true" 19 android:layout_width="match_parent" 20 android:layout_height="match_parent" 21 style="@style/RootLayoutPadding"> 22 <LinearLayout 23 android:orientation="vertical" 24 android:layout_width="match_parent" 25 android:layout_height="match_parent"> 26 27 <TextView 28 android:layout_width="match_parent" 29 android:layout_height="wrap_content" 30 android:text="@string/dialer_incoming_call_test"/> 31 32 <LinearLayout 33 android:layout_width="wrap_content" 34 android:layout_height="wrap_content" 35 android:layout_marginTop="@dimen/js_padding" 36 android:layout_marginBottom="@dimen/js_padding"> 37 <ImageView 38 android:id="@+id/set_default_dialer_image" 39 android:layout_width="wrap_content" 40 android:layout_height="wrap_content" 41 android:layout_marginRight="@dimen/js_padding" 42 android:src="@drawable/fs_indeterminate"/> 43 <TextView 44 android:layout_width="wrap_content" 45 android:layout_height="wrap_content" 46 android:text="@string/dialer_incoming_call_test_instructions" 47 android:textSize="16dp"/> 48 </LinearLayout> 49 50 <Button 51 android:id="@+id/set_default_dialer" 52 android:layout_width="wrap_content" 53 android:layout_height="wrap_content" 54 android:text="@string/voicemail_set_default_dialer_button"/> 55 56 <LinearLayout 57 android:layout_width="wrap_content" 58 android:layout_height="wrap_content" 59 android:layout_marginTop="@dimen/js_padding" 60 android:layout_marginBottom="@dimen/js_padding"> 61 <ImageView 62 android:id="@+id/dialer_incoming_call_status" 63 android:layout_width="wrap_content" 64 android:layout_height="wrap_content" 65 android:layout_marginRight="@dimen/js_padding" 66 android:src="@drawable/fs_indeterminate"/> 67 <TextView 68 android:id="@+id/dialer_check_incoming_call_explanation" 69 android:layout_width="wrap_content" 70 android:layout_height="wrap_content" 71 android:text="@string/dialer_check_incoming_call_explanation" 72 android:textSize="16dp"/> 73 </LinearLayout> 74 75 <LinearLayout 76 android:layout_width="wrap_content" 77 android:layout_height="wrap_content" 78 android:layout_marginTop="@dimen/js_padding" 79 android:layout_marginBottom="@dimen/js_padding"> 80 <ImageView 81 android:id="@+id/restore_default_dialer_image" 82 android:layout_width="wrap_content" 83 android:layout_height="wrap_content" 84 android:layout_marginRight="@dimen/js_padding" 85 android:src="@drawable/fs_indeterminate"/> 86 <TextView 87 android:id="@+id/restore_default_dialer_text" 88 android:layout_width="wrap_content" 89 android:layout_height="wrap_content" 90 android:text="@string/voicemail_restore_default_dialer_description" 91 android:textSize="16dp"/> 92 </LinearLayout> 93 94 <Button 95 android:id="@+id/restore_default_dialer" 96 android:layout_width="wrap_content" 97 android:layout_height="wrap_content" 98 android:text="@string/voicemail_restore_default_dialer_button"/> 99 100 <include layout="@layout/pass_fail_buttons"/> 101 </LinearLayout> 102</ScrollView> 103