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