1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2014 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
18    xmlns:android="http://schemas.android.com/apk/res/android"
19    android:layout_width="match_parent"
20    android:layout_height="match_parent"
21    android:orientation="vertical" >
22    <EditText
23        android:id="@+id/number"
24        android:inputType="number"
25        android:layout_width="200dp"
26        android:layout_height="wrap_content" />
27    <Button
28        android:id="@+id/place_call_button"
29        android:layout_width="wrap_content"
30        android:layout_height="wrap_content"
31        android:text="@string/placeCallButton" />
32    <Button
33        android:id="@+id/report_nuisance_button"
34        android:layout_width="wrap_content"
35        android:layout_height="wrap_content"
36        android:text="Report Nuisance" />
37    <Button
38        android:id="@+id/report_not_nuisance_button"
39        android:layout_width="wrap_content"
40        android:layout_height="wrap_content"
41        android:text="Report Not Nuisance" />
42    <Button
43        android:id="@+id/set_default_button"
44        android:layout_width="wrap_content"
45        android:layout_height="wrap_content"
46        android:text="@string/defaultDialerButton" />
47    <Button
48        android:id="@+id/test_voicemail_button"
49        android:layout_width="wrap_content"
50        android:layout_height="wrap_content"
51        android:text="@string/testVoicemailButton" />
52    <Button
53        android:id="@+id/cancel_missed_button"
54        android:layout_width="wrap_content"
55        android:layout_height="wrap_content"
56        android:text="@string/cancelMissedButton" />
57    <CheckBox
58        android:id="@+id/call_with_rtt_checkbox"
59        android:layout_width="wrap_content"
60        android:layout_height="wrap_content"
61        android:text="@string/startCallWithRtt"/>
62    <CheckBox
63        android:id="@+id/add_composer_attachments_checkbox"
64        android:layout_width="wrap_content"
65        android:layout_height="wrap_content"
66        android:text="@string/addComposerAttachments"/>
67    <LinearLayout
68        android:layout_width="wrap_content"
69        android:layout_height="wrap_content"
70        android:orientation="horizontal" >
71        <TextView
72            android:layout_width="wrap_content"
73            android:layout_height="wrap_content"
74            android:textSize="15dp"
75            android:text="Priority:" />
76        <EditText
77            android:id="@+id/priority"
78            android:inputType="number"
79            android:text="100"
80            android:layout_width="50dp"
81            android:layout_height="wrap_content" />
82        <Button
83            android:id="@+id/enable_car_mode"
84            android:layout_width="wrap_content"
85            android:layout_height="wrap_content"
86            android:text="Enable Car mode" />
87        <Button
88            android:id="@+id/disable_car_mode"
89            android:layout_width="wrap_content"
90            android:layout_height="wrap_content"
91            android:text="Disable Car mode" />
92    </LinearLayout>
93    <Button
94        android:id="@+id/toggle_incallservice"
95        android:layout_width="wrap_content"
96        android:layout_height="wrap_content"
97        android:text="Toggle InCallService" />
98
99    <Button
100        android:id="@+id/send_contact_discovery_button"
101        android:layout_width="wrap_content"
102        android:layout_height="wrap_content"
103        android:text="@string/send_contact_discovery" />
104</LinearLayout>
105