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