1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2016 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<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
17              android:layout_width="match_parent"
18              android:layout_height="match_parent" android:orientation="vertical">
19    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
20                  android:layout_width="match_parent"
21                  android:layout_height="wrap_content" android:orientation="horizontal">
22    <Button
23        android:id="@+id/bluetooth_pick_device"
24        android:layout_width="193dp"
25        android:layout_height="wrap_content"
26        android:text="@string/bluetooth_pick_device"/>
27        <Button
28            android:id="@+id/bluetooth_disconnect_device"
29            android:layout_width="193dp"
30            android:layout_height="wrap_content"
31            android:text="@string/bluetooth_profile_disconnect"/>
32    </LinearLayout>
33    <TextView android:layout_width="match_parent" android:layout_height="wrap_content"
34              android:id="@+id/messageOriginatorDisplayName"/>
35    <EditText android:layout_width="match_parent" android:layout_height="wrap_content"
36              android:id="@+id/messageOriginator"/>
37    <TextView android:layout_width="match_parent" android:layout_height="wrap_content"
38              android:id="@+id/messageContent"/>
39    <TextView android:id="@+id/bluetoothDevice" android:layout_height="wrap_content"
40              android:layout_width="wrap_content"/>
41
42    <Button
43        android:id="@+id/reply"
44        android:layout_width="wrap_content"
45        android:layout_height="wrap_content"
46        android:layout_gravity="center"
47        android:text="@string/sms_reply_busy"/>
48    <LinearLayout
49        android:layout_width="wrap_content"
50        android:layout_height="wrap_content">
51        <TextView
52            android:layout_width="wrap_content"
53            android:layout_height="wrap_content"
54            android:text="@string/sms_enter_tel_num"/>
55        <EditText
56            android:id="@+id/sms_tel_num"
57            android:layout_width="wrap_content"
58            android:layout_height="wrap_content"
59            android:text="+1-650-000-0000, comma separated"
60            android:inputType="text"/>
61    </LinearLayout>
62    <LinearLayout
63        android:layout_width="wrap_content"
64        android:layout_height="wrap_content">
65        <Button
66            android:id="@+id/sms_new_message"
67            android:layout_width="wrap_content"
68            android:layout_height="wrap_content"
69            android:layout_gravity="center"
70            android:text="@string/sms_new_message_button"/>
71        <Button
72            android:id="@+id/mms_new_message"
73            android:layout_width="wrap_content"
74            android:layout_height="wrap_content"
75            android:layout_gravity="center"
76            android:text="@string/mms_new_message_button"/>
77        <Button
78            android:id="@+id/reset_message_counter"
79            android:layout_width="wrap_content"
80            android:layout_height="wrap_content"
81            android:layout_gravity="center"
82            android:text="@string/reset_message_counter_button"/>
83    </LinearLayout>
84
85    <CheckBox android:layout_width="wrap_content" android:layout_height="wrap_content"
86              android:id="@+id/sent_checkbox"
87              android:clickable="false"
88              android:text="@string/sms_reply_sent"/>
89    <CheckBox android:layout_width="wrap_content" android:layout_height="wrap_content"
90              android:id="@+id/delivered_checkbox"
91              android:clickable="false"
92              android:text="@string/sms_reply_delivered"/>
93</LinearLayout>
94