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<GridLayout xmlns:android="http://schemas.android.com/apk/res/android" 17 android:layout_width="wrap_content" 18 android:layout_height="match_parent" 19 android:columnCount = "2"> 20 <TextView 21 android:id="@+id/bluetooth_device" 22 android:layout_height="wrap_content" 23 android:layout_width="wrap_content"/> 24 <Button 25 android:id="@+id/bluetooth_pick_device" 26 android:layout_width="wrap_content" 27 android:layout_height="wrap_content" 28 android:text="@string/bluetooth_pick_device"/> 29 <Button 30 android:id="@+id/bluetooth_headset_connect" 31 android:layout_width="wrap_content" 32 android:layout_height="wrap_content" 33 android:text="@string/bluetooth_profile_connect"/> 34 <Button 35 android:id="@+id/bluetooth_headset_disconnect" 36 android:layout_width="wrap_content" 37 android:layout_height="wrap_content" 38 android:text="@string/bluetooth_profile_disconnect"/> 39 <Button 40 android:id="@+id/bluetooth_sco_connect" 41 android:layout_width="wrap_content" 42 android:layout_height="wrap_content" 43 android:text="@string/bluetooth_sco_connect"/> 44 <Button 45 android:id="@+id/bluetooth_sco_disconnect" 46 android:layout_width="wrap_content" 47 android:layout_height="wrap_content" 48 android:text="@string/bluetooth_sco_disconnect"/> 49 <Button 50 android:id="@+id/bluetooth_quiet_mode_enable" 51 android:layout_width="wrap_content" 52 android:layout_height="wrap_content" 53 android:text="@string/bluetooth_quiet_mode_enable"/> 54 <Button 55 android:id="@+id/bluetooth_start_outgoing_call" 56 android:layout_width="wrap_content" 57 android:layout_height="wrap_content" 58 android:text="@string/bluetooth_start_outgoing_call"/> 59 <EditText 60 android:id="@+id/bluetooth_outgoing_phone_number" 61 android:layout_width="wrap_content" 62 android:layout_height="wrap_content" 63 android:hint="@string/bluetooth_outgoing_phone_number"/> 64 <Button 65 android:id="@+id/bluetooth_end_outgoing_call" 66 android:layout_width="wrap_content" 67 android:layout_height="wrap_content" 68 android:text="@string/bluetooth_end_outgoing_call"/> 69 <Button 70 android:id="@+id/bluetooth_hold_call" 71 android:layout_width="wrap_content" 72 android:layout_height="wrap_content" 73 android:text="@string/bluetooth_hold_call"/> 74 <Button 75 android:id="@+id/bluetooth_voice_recognition_enable" 76 android:layout_width="wrap_content" 77 android:layout_height="wrap_content" 78 android:text="@string/bluetooth_voice_recognition_enable"/> 79 <Button 80 android:id="@+id/bluetooth_voice_recognition_disable" 81 android:layout_width="wrap_content" 82 android:layout_height="wrap_content" 83 android:text="@string/bluetooth_voice_recognition_disable"/> 84</GridLayout> 85