blob: 5bcc1b3b49bffb1c4f0afa14de14524b09eab50b [file] [log] [blame]
phweiss9e450e12016-12-02 14:31:04 +01001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2016 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
18<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
19 android:id="@+id/scrollView"
20 android:layout_width="match_parent"
21 android:layout_height="wrap_content"
22 android:clipToPadding="false">
23
24 <LinearLayout
25 android:layout_width="match_parent"
26 android:layout_height="wrap_content"
27 android:paddingTop="?android:attr/dialogPreferredPadding"
28 android:paddingRight="?android:attr/dialogPreferredPadding"
29 android:paddingLeft="?android:attr/dialogPreferredPadding"
phweiss9e450e12016-12-02 14:31:04 +010030 android:orientation="vertical">
phweiss9e450e12016-12-02 14:31:04 +010031 <LinearLayout
phweiss0330f882017-04-19 20:14:51 +020032 android:id="@+id/device_management_disclosures"
phweiss9e450e12016-12-02 14:31:04 +010033 android:layout_width="match_parent"
34 android:layout_height="wrap_content"
phweiss0330f882017-04-19 20:14:51 +020035 android:paddingBottom="?android:attr/dialogPreferredPadding"
36 android:orientation="vertical">
37 <TextView
38 android:id="@+id/device_management_subtitle"
phweiss9e450e12016-12-02 14:31:04 +010039 android:layout_width="match_parent"
40 android:layout_height="wrap_content"
phweiss0330f882017-04-19 20:14:51 +020041 android:text="@string/monitoring_title_device_owned"
Fabian Kozynski058155f2019-01-09 14:50:17 -050042 style="@style/TextAppearance.DeviceManagementDialog.Title"
phweiss0330f882017-04-19 20:14:51 +020043 android:textColor="?android:attr/textColorPrimary"
44 android:paddingBottom="@dimen/qs_footer_dialog_subtitle_padding"
45 />
46 <TextView
47 android:id="@+id/device_management_warning"
48 android:layout_width="match_parent"
49 android:layout_height="wrap_content"
50 android:text="@null"
51 style="@android:style/TextAppearance.Material.Subhead"
52 android:textColor="?android:attr/textColorPrimary"
53 />
phweiss9e450e12016-12-02 14:31:04 +010054 </LinearLayout>
phweiss0330f882017-04-19 20:14:51 +020055
phweiss9e450e12016-12-02 14:31:04 +010056 <LinearLayout
phweiss0330f882017-04-19 20:14:51 +020057 android:id="@+id/ca_certs_disclosures"
phweiss9e450e12016-12-02 14:31:04 +010058 android:layout_width="match_parent"
59 android:layout_height="wrap_content"
phweiss0330f882017-04-19 20:14:51 +020060 android:paddingBottom="?android:attr/dialogPreferredPadding"
61 android:orientation="vertical">
62 <TextView
63 android:id="@+id/ca_certs_subtitle"
phweiss9e450e12016-12-02 14:31:04 +010064 android:layout_width="match_parent"
65 android:layout_height="wrap_content"
phweiss0330f882017-04-19 20:14:51 +020066 android:text="@string/monitoring_subtitle_ca_certificate"
Fabian Kozynski058155f2019-01-09 14:50:17 -050067 style="@style/TextAppearance.DeviceManagementDialog.Title"
phweiss0330f882017-04-19 20:14:51 +020068 android:textColor="?android:attr/textColorPrimary"
69 android:paddingBottom="@dimen/qs_footer_dialog_subtitle_padding"
70 />
71 <TextView
72 android:id="@+id/ca_certs_warning"
73 android:layout_width="match_parent"
74 android:layout_height="wrap_content"
75 android:text="@null"
76 style="@android:style/TextAppearance.Material.Subhead"
77 android:textColor="?android:attr/textColorPrimary"
78 />
79 </LinearLayout>
80
81 <LinearLayout
82 android:id="@+id/network_logging_disclosures"
83 android:layout_width="match_parent"
84 android:layout_height="wrap_content"
85 android:paddingBottom="?android:attr/dialogPreferredPadding"
86 android:orientation="vertical">
87 <TextView
88 android:id="@+id/network_logging_subtitle"
89 android:layout_width="match_parent"
90 android:layout_height="wrap_content"
91 android:text="@string/monitoring_subtitle_network_logging"
Fabian Kozynski058155f2019-01-09 14:50:17 -050092 style="@style/TextAppearance.DeviceManagementDialog.Title"
phweiss0330f882017-04-19 20:14:51 +020093 android:textColor="?android:attr/textColorPrimary"
94 android:paddingBottom="@dimen/qs_footer_dialog_subtitle_padding"
95 />
96 <TextView
97 android:id="@+id/network_logging_warning"
98 android:layout_width="match_parent"
99 android:layout_height="wrap_content"
100 android:text="@null"
101 style="@android:style/TextAppearance.Material.Subhead"
102 android:textColor="?android:attr/textColorPrimary"
103 />
104 </LinearLayout>
105
106 <LinearLayout
107 android:id="@+id/vpn_disclosures"
108 android:layout_width="match_parent"
109 android:layout_height="wrap_content"
110 android:paddingBottom="?android:attr/dialogPreferredPadding"
111 android:orientation="vertical">
112 <TextView
113 android:id="@+id/vpn_subtitle"
114 android:layout_width="match_parent"
115 android:layout_height="wrap_content"
116 android:text="@string/monitoring_subtitle_vpn"
Fabian Kozynski058155f2019-01-09 14:50:17 -0500117 style="@style/TextAppearance.DeviceManagementDialog.Title"
phweiss0330f882017-04-19 20:14:51 +0200118 android:textColor="?android:attr/textColorPrimary"
119 android:paddingBottom="@dimen/qs_footer_dialog_subtitle_padding"
120 />
121 <TextView
122 android:id="@+id/vpn_warning"
123 android:layout_width="match_parent"
124 android:layout_height="wrap_content"
125 android:text="@null"
126 style="@android:style/TextAppearance.Material.Subhead"
127 android:textColor="?android:attr/textColorPrimary"
128 />
phweiss9e450e12016-12-02 14:31:04 +0100129 </LinearLayout>
130 </LinearLayout>
131</ScrollView>