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    <LinearLayout
43        android:layout_width="wrap_content"
44        android:layout_height="wrap_content">
45        <Button
46            android:id="@+id/uploading_supported_feature"
47            android:layout_width="wrap_content"
48            android:layout_height="wrap_content"
49            android:layout_gravity="center"
50            android:text="@string/uploading_supported_feature"/>
51        <EditText
52            android:id="@+id/uploading_supported_feature_value"
53            android:layout_width="wrap_content"
54            android:layout_height="wrap_content"
55            android:text="0"
56            android:inputType="none" />
57    </LinearLayout>
58
59    <Button
60        android:id="@+id/reply"
61        android:layout_width="wrap_content"
62        android:layout_height="wrap_content"
63        android:layout_gravity="center"
64        android:text="@string/sms_reply_busy"/>
65    <Button
66        android:id="@+id/check_messages"
67        android:layout_width="wrap_content"
68        android:layout_height="wrap_content"
69        android:layout_gravity="center"
70        android:text="@string/sms_listing_button"/>
71    <LinearLayout
72        android:layout_width="wrap_content"
73        android:layout_height="wrap_content">
74        <TextView
75            android:layout_width="wrap_content"
76            android:layout_height="wrap_content"
77            android:text="@string/sms_enter_tel_num"/>
78        <EditText
79            android:id="@+id/sms_tel_num"
80            android:layout_width="wrap_content"
81            android:layout_height="wrap_content"
82            android:text="+1-650-000-0000                    "
83            android:inputType="text" />
84        <Button
85            android:id="@+id/sms_new_message"
86            android:layout_width="wrap_content"
87            android:layout_height="wrap_content"
88            android:layout_gravity="center"
89            android:text="@string/sms_new_message_button"/>
90    </LinearLayout>
91
92    <CheckBox android:layout_width="wrap_content" android:layout_height="wrap_content"
93              android:id="@+id/sent_checkbox"
94              android:clickable="false"
95              android:text="@string/sms_reply_sent"/>
96    <CheckBox android:layout_width="wrap_content" android:layout_height="wrap_content"
97              android:id="@+id/delivered_checkbox"
98              android:clickable="false"
99              android:text="@string/sms_reply_delivered"/>
100</LinearLayout>
101