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:fitsSystemWindows="true"
19    android:layout_width="match_parent"
20    android:layout_height="match_parent">
21
22<LinearLayout
23    style="@style/RootLayoutPadding"
24    android:layout_width="match_parent"
25    android:layout_height="match_parent"
26    android:orientation="vertical">
27
28  <TextView
29      android:layout_width="match_parent"
30      android:layout_height="wrap_content"
31      android:text="@string/bt_hid_device_register" />
32
33  <Button
34      android:id="@+id/bt_hid_device_register_button"
35      android:layout_width="match_parent"
36      android:layout_height="wrap_content"
37      android:text="@string/bt_hid_device_register" />
38
39  <Button
40      android:id="@+id/bt_hid_device_discoverable_button"
41      android:layout_width="match_parent"
42      android:layout_height="wrap_content"
43      android:text="@string/bt_make_discoverable" />
44
45  <Button
46      android:id="@+id/bt_hid_device_send_report_button"
47      android:layout_width="match_parent"
48      android:layout_height="wrap_content"
49      android:text="@string/bt_hid_device_send_report" />
50
51  <Button
52      android:id="@+id/bt_hid_device_reply_report_button"
53      android:layout_width="match_parent"
54      android:layout_height="wrap_content"
55      android:text="@string/bt_hid_device_reply_report" />
56
57  <Button
58      android:id="@+id/bt_hid_device_report_error_button"
59      android:layout_width="match_parent"
60      android:layout_height="wrap_content"
61      android:text="@string/bt_hid_device_report_error" />
62
63  <Button
64      android:id="@+id/bt_hid_device_unregister_button"
65      android:layout_width="match_parent"
66      android:layout_height="wrap_content"
67      android:text="@string/bt_hid_device_unregister" />
68
69  <include layout="@layout/pass_fail_buttons" />
70</LinearLayout>
71
72</ScrollView>
73