1<?xml version="1.0" encoding="utf-8"?>
2<!--
3** Copyright 2020, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9**     http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16-->
17<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
18    android:id="@+id/scrollView"
19    android:layout_width="match_parent"
20    android:layout_height="wrap_content"
21    android:clipToPadding="false">
22
23    <LinearLayout
24        android:layout_width="match_parent"
25        android:layout_height="wrap_content"
26        android:paddingTop="?android:attr/dialogPreferredPadding"
27        android:paddingRight="?android:attr/dialogPreferredPadding"
28        android:paddingLeft="?android:attr/dialogPreferredPadding"
29        android:orientation="vertical">
30        <ImageView
31            android:id="@+id/parental_controls_icon"
32            android:layout_width="24dip"
33            android:layout_height="24dip"
34            android:layout_gravity="center_horizontal"
35
36        />
37        <LinearLayout
38            android:id="@+id/parental_controls_disclosures"
39            android:layout_width="match_parent"
40            android:layout_height="wrap_content"
41            android:paddingBottom="?android:attr/dialogPreferredPadding"
42            android:orientation="vertical">
43            <TextView
44                android:id="@+id/parental_controls_title"
45                android:layout_width="match_parent"
46                android:layout_height="wrap_content"
47                android:text="@string/monitoring_title_device_owned"
48                style="@style/DeviceManagementDialogTitle"
49                android:paddingBottom="@dimen/qs_footer_dialog_subtitle_padding"
50            />
51            <TextView
52                android:id="@+id/parental_controls_warning"
53                android:layout_width="match_parent"
54                android:layout_height="wrap_content"
55                android:textAppearance="@style/TextAppearance.DeviceManagementDialog.Content"
56                android:text="@string/monitoring_description_parental_controls"
57            />
58        </LinearLayout>
59    </LinearLayout>
60</ScrollView>
61