1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2018 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<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 18 android:layout_width="match_parent" 19 android:layout_height="match_parent"> 20 21<LinearLayout 22 style="@style/RootLayoutPadding" 23 android:layout_width="match_parent" 24 android:layout_height="match_parent" 25 android:orientation="vertical"> 26 27 <TextView 28 android:layout_width="match_parent" 29 android:layout_height="wrap_content" 30 android:text="@string/bt_hid_device_register" /> 31 32 <Button 33 android:id="@+id/bt_hid_device_register_button" 34 android:layout_width="match_parent" 35 android:layout_height="wrap_content" 36 android:text="@string/bt_hid_device_register" /> 37 38 <Button 39 android:id="@+id/bt_hid_device_discoverable_button" 40 android:layout_width="match_parent" 41 android:layout_height="wrap_content" 42 android:text="@string/bt_make_discoverable" /> 43 44 <Button 45 android:id="@+id/bt_hid_device_send_report_button" 46 android:layout_width="match_parent" 47 android:layout_height="wrap_content" 48 android:text="@string/bt_hid_device_send_report" /> 49 50 <Button 51 android:id="@+id/bt_hid_device_reply_report_button" 52 android:layout_width="match_parent" 53 android:layout_height="wrap_content" 54 android:text="@string/bt_hid_device_reply_report" /> 55 56 <Button 57 android:id="@+id/bt_hid_device_report_error_button" 58 android:layout_width="match_parent" 59 android:layout_height="wrap_content" 60 android:text="@string/bt_hid_device_report_error" /> 61 62 <Button 63 android:id="@+id/bt_hid_device_unregister_button" 64 android:layout_width="match_parent" 65 android:layout_height="wrap_content" 66 android:text="@string/bt_hid_device_unregister" /> 67 68 <include layout="@layout/pass_fail_buttons" /> 69</LinearLayout> 70 71</ScrollView> 72