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 58 <LinearLayout 59 android:layout_width="wrap_content" 60 android:layout_height="wrap_content" 61 android:orientation="horizontal" > 62 <EditText 63 android:id="@+id/set_composer_edit_text" 64 android:inputType="number" 65 android:layout_width="200dp" 66 android:layout_height="wrap_content" /> 67 <Button 68 android:id="@+id/submit_composer_value" 69 android:layout_width="wrap_content" 70 android:layout_height="wrap_content" 71 android:text="@string/submitCallComposerLabel" /> 72 </LinearLayout> 73 74 <CheckBox 75 android:id="@+id/call_with_rtt_checkbox" 76 android:layout_width="wrap_content" 77 android:layout_height="wrap_content" 78 android:text="@string/startCallWithRtt"/> 79 <CheckBox 80 android:id="@+id/add_composer_attachments_checkbox" 81 android:layout_width="wrap_content" 82 android:layout_height="wrap_content" 83 android:text="@string/addComposerAttachments"/> 84 <LinearLayout 85 android:layout_width="wrap_content" 86 android:layout_height="wrap_content" 87 android:orientation="horizontal" > 88 <TextView 89 android:layout_width="wrap_content" 90 android:layout_height="wrap_content" 91 android:textSize="15dp" 92 android:text="Priority:" /> 93 <EditText 94 android:id="@+id/priority" 95 android:inputType="number" 96 android:text="100" 97 android:layout_width="50dp" 98 android:layout_height="wrap_content" /> 99 <Button 100 android:id="@+id/enable_car_mode" 101 android:layout_width="wrap_content" 102 android:layout_height="wrap_content" 103 android:text="Enable Car mode" /> 104 <Button 105 android:id="@+id/disable_car_mode" 106 android:layout_width="wrap_content" 107 android:layout_height="wrap_content" 108 android:text="Disable Car mode" /> 109 </LinearLayout> 110 <Button 111 android:id="@+id/toggle_incallservice" 112 android:layout_width="wrap_content" 113 android:layout_height="wrap_content" 114 android:text="Toggle InCallService" /> 115 116 <Button 117 android:id="@+id/send_contact_discovery_button" 118 android:layout_width="wrap_content" 119 android:layout_height="wrap_content" 120 android:text="@string/send_contact_discovery" /> 121</LinearLayout> 122