1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2021 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<com.android.cts.verifier.BoxInsetLayout xmlns:android="http://schemas.android.com/apk/res/android"
17    xmlns:app="http://schemas.android.com/apk/res-auto"
18    android:fitsSystemWindows="true"
19    android:layout_width="match_parent"
20    android:layout_height="match_parent">
21    <LinearLayout app:ctsv_layout_box="all"
22        android:layout_width="fill_parent"
23        android:layout_height="fill_parent"
24        android:orientation="vertical" >
25        <include layout="@layout/pass_fail_buttons"/>
26        <TextView
27            android:layout_width="match_parent"
28            android:layout_height="wrap_content"
29            android:paddingVertical="12dp"
30            android:paddingHorizontal="24dp"
31            android:id="@+id/car_power_policy_results"/>
32        <Button
33            android:id="@+id/car_component_power_off_policy_check"
34            android:layout_height="40dp"
35            android:layout_width="500dp"
36            android:layout_gravity="center"
37            android:layout_marginTop="10dp"
38            android:text="@string/car_component_power_off_policy_check"/>
39        <Button
40            android:id="@+id/car_wifi_settings_disable"
41            android:layout_height="40dp"
42            android:layout_width="500dp"
43            android:layout_gravity="center"
44            android:layout_marginTop="10dp"
45            android:text="@string/car_wifi_settings_disable"/>
46        <Button
47            android:id="@+id/car_bluetooth_settings_disable"
48            android:layout_height="40dp"
49            android:layout_width="500dp"
50            android:layout_gravity="center"
51            android:layout_marginTop="10dp"
52            android:text="@string/car_bluetooth_settings_disable"/>
53        <Button
54            android:id="@+id/car_location_settings_disable"
55            android:layout_height="40dp"
56            android:layout_width="500dp"
57            android:layout_gravity="center"
58            android:layout_marginTop="10dp"
59            android:text="@string/car_location_settings_disable"/>
60        <Button
61            android:id="@+id/car_component_power_on_policy_check"
62            android:layout_height="40dp"
63            android:layout_width="500dp"
64            android:layout_gravity="center"
65            android:layout_marginTop="10dp"
66            android:text="@string/car_component_power_on_policy_check"/>
67        <Button
68            android:id="@+id/car_wifi_settings_enable"
69            android:layout_height="40dp"
70            android:layout_width="500dp"
71            android:layout_gravity="center"
72            android:layout_marginTop="10dp"
73            android:text="@string/car_wifi_settings_enable"/>
74        <Button
75            android:id="@+id/car_bluetooth_settings_enable"
76            android:layout_height="40dp"
77            android:layout_width="500dp"
78            android:layout_gravity="center"
79            android:layout_marginTop="10dp"
80            android:text="@string/car_bluetooth_settings_enable"/>
81        <Button
82            android:id="@+id/car_location_settings_enable"
83            android:layout_height="40dp"
84            android:layout_width="500dp"
85            android:layout_gravity="center"
86            android:layout_marginTop="10dp"
87            android:text="@string/car_location_settings_enable"/>
88    </LinearLayout>
89</com.android.cts.verifier.BoxInsetLayout>
90