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: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/dialer_telecom_intents_test"/> 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/set_default_dialer_image" 37 android:layout_width="wrap_content" 38 android:layout_height="wrap_content" 39 android:layout_marginRight="@dimen/js_padding" 40 android:src="@drawable/fs_indeterminate"/> 41 <TextView 42 android:layout_width="wrap_content" 43 android:layout_height="wrap_content" 44 android:text="@string/dialer_telecom_intents_test_instructions" 45 android:textSize="16dp"/> 46 </LinearLayout> 47 48 <LinearLayout 49 android:layout_width="wrap_content" 50 android:layout_height="wrap_content" 51 android:layout_marginTop="@dimen/js_padding" 52 android:layout_marginBottom="@dimen/js_padding"> 53 <TextView 54 android:id="@+id/dialer_check_intents_implemented_explanation" 55 android:layout_width="wrap_content" 56 android:layout_height="wrap_content" 57 android:text="@string/dialer_check_intents_implemented_explanation" 58 android:textSize="16dp"/> 59 </LinearLayout> 60 61 <LinearLayout 62 android:layout_width="wrap_content" 63 android:layout_height="wrap_content" 64 android:layout_marginTop="@dimen/js_padding" 65 android:layout_marginBottom="@dimen/js_padding"> 66 <Button 67 android:id="@+id/dialer_telecom_intents_call_settings" 68 android:layout_width="wrap_content" 69 android:layout_height="wrap_content" 70 android:text="@string/dialer_telecom_intents_call_settings"/> 71 </LinearLayout> 72 73 <LinearLayout 74 android:layout_width="wrap_content" 75 android:layout_height="wrap_content" 76 android:layout_marginTop="@dimen/js_padding" 77 android:layout_marginBottom="@dimen/js_padding"> 78 <CheckBox 79 android:id="@+id/dialer_telecom_intents_call_settings_check_box" 80 android:text="@string/dialer_check_intents_check_box" 81 android:layout_width="wrap_content" 82 android:layout_height="wrap_content"/> 83 </LinearLayout> 84 85 <LinearLayout 86 android:layout_width="wrap_content" 87 android:layout_height="wrap_content" 88 android:layout_marginTop="@dimen/js_padding" 89 android:layout_marginBottom="@dimen/js_padding"> 90 <Button 91 android:id="@+id/dialer_telecom_intents_short_sms" 92 android:layout_width="wrap_content" 93 android:layout_height="wrap_content" 94 android:text="@string/dialer_telecom_intents_short_sms"/> 95 </LinearLayout> 96 97 <LinearLayout 98 android:layout_width="wrap_content" 99 android:layout_height="wrap_content" 100 android:layout_marginTop="@dimen/js_padding" 101 android:layout_marginBottom="@dimen/js_padding"> 102 <CheckBox 103 android:id="@+id/dialer_telecom_intents_short_sms_check_box" 104 android:text="@string/dialer_check_intents_check_box" 105 android:layout_width="wrap_content" 106 android:layout_height="wrap_content"/> 107 </LinearLayout> 108 109 <LinearLayout 110 android:layout_width="wrap_content" 111 android:layout_height="wrap_content" 112 android:layout_marginTop="@dimen/js_padding" 113 android:layout_marginBottom="@dimen/js_padding"> 114 <Button 115 android:id="@+id/dialer_telecom_intents_calling_accounts" 116 android:layout_width="wrap_content" 117 android:layout_height="wrap_content" 118 android:text="@string/dialer_telecom_intents_calling_accounts"/> 119 </LinearLayout> 120 121 <LinearLayout 122 android:layout_width="wrap_content" 123 android:layout_height="wrap_content" 124 android:layout_marginTop="@dimen/js_padding" 125 android:layout_marginBottom="@dimen/js_padding"> 126 <CheckBox 127 android:id="@+id/dialer_telecom_intents_calling_accounts_check_box" 128 android:text="@string/dialer_check_intents_check_box" 129 android:layout_width="wrap_content" 130 android:layout_height="wrap_content"/> 131 </LinearLayout> 132 133 <LinearLayout 134 android:layout_width="wrap_content" 135 android:layout_height="wrap_content" 136 android:layout_marginTop="@dimen/js_padding" 137 android:layout_marginBottom="@dimen/js_padding"> 138 <Button 139 android:id="@+id/dialer_telecom_intents_accessibility_settings" 140 android:layout_width="wrap_content" 141 android:layout_height="wrap_content" 142 android:text="@string/dialer_telecom_intents_accessibility_settings"/> 143 </LinearLayout> 144 145 <LinearLayout 146 android:layout_width="wrap_content" 147 android:layout_height="wrap_content" 148 android:layout_marginTop="@dimen/js_padding" 149 android:layout_marginBottom="@dimen/js_padding"> 150 <CheckBox 151 android:id="@+id/dialer_telecom_intents_accessibility_settings_check_box" 152 android:text="@string/dialer_check_intents_check_box" 153 android:layout_width="wrap_content" 154 android:layout_height="wrap_content"/> 155 </LinearLayout> 156 157 <include layout="@layout/pass_fail_buttons"/> 158 </LinearLayout> 159</ScrollView> 160