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    <LinearLayout
63        android:layout_width="wrap_content"
64        android:layout_height="wrap_content"
65        android:orientation="horizontal" >
66        <TextView
67            android:layout_width="wrap_content"
68            android:layout_height="wrap_content"
69            android:textSize="15dp"
70            android:text="Priority:" />
71        <EditText
72            android:id="@+id/priority"
73            android:inputType="number"
74            android:text="100"
75            android:layout_width="50dp"
76            android:layout_height="wrap_content" />
77        <Button
78            android:id="@+id/enable_car_mode"
79            android:layout_width="wrap_content"
80            android:layout_height="wrap_content"
81            android:text="Enable Car mode" />
82        <Button
83            android:id="@+id/disable_car_mode"
84            android:layout_width="wrap_content"
85            android:layout_height="wrap_content"
86            android:text="Disable Car mode" />
87    </LinearLayout>
88    <Button
89        android:id="@+id/toggle_incallservice"
90        android:layout_width="wrap_content"
91        android:layout_height="wrap_content"
92        android:text="Toggle InCallService" />
93
94    <Button
95        android:id="@+id/send_contact_discovery_button"
96        android:layout_width="wrap_content"
97        android:layout_height="wrap_content"
98        android:text="@string/send_contact_discovery" />
99</LinearLayout>
100