1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2021 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<org.chromium.chrome.browser.management.ManagementView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@macro/default_bg_color">
<LinearLayout
android:id="@+id/management_container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="@dimen/cm_padding">
<ImageView
android:layout_width="@dimen/cm_logo_width"
android:layout_height="@dimen/cm_logo_height"
android:src="@drawable/enterprise_icon"
android:contentDescription="@string/product_logo_enterprise_alt_text" />
<TextView
android:id="@+id/title_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/cm_title_margin_top"
android:textAppearance="@style/TextAppearance.Headline.Primary" />
<TextView
android:id="@+id/description_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/cm_description_margin_top"
android:textAppearance="@style/TextAppearance.TextMedium.Secondary" />
<TextView
android:id="@+id/learn_more"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/cm_learn_more_margin_top"
android:textAppearance="@style/TextAppearance.TextMedium.Link" />
<TextView
android:id="@+id/browser_reporting"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/cm_browser_margin_top"
android:text="@string/management_browser_reporting"
android:textAppearance="@style/TextAppearance.Headline2" />
<TextView
android:id="@+id/browser_reporting_explanation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/management_browser_reporting_explanation"
android:textAppearance="@style/TextAppearance.TextMedium.Secondary" />
<TextView
android:id="@+id/report_username"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginTop="@dimen/cm_browser_item_margin_top"
android:drawablePadding="@dimen/cm_browser_item_drawable_padding"
android:text="@string/management_extension_report_username"
android:textAppearance="@style/TextAppearance.TextMedium.Secondary"
app:drawableLeftCompat="@drawable/enterprise_user_circle" />
<TextView
android:id="@+id/report_version"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginTop="@dimen/cm_browser_item_margin_top"
android:drawablePadding="@dimen/cm_browser_item_drawable_padding"
android:text="@string/management_extension_report_version"
android:textAppearance="@style/TextAppearance.TextMedium.Secondary"
app:drawableLeftCompat="@drawable/enterprise_phone" />
<TextView
android:id="@+id/profile_reporting_explanation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/management_profile_reporting_explanation"
android:textAppearance="@style/TextAppearance.TextMedium.Secondary" />
<TextView
android:id="@+id/profile_report_details"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/cm_browser_item_margin_top"
android:textAppearance="@style/TextAppearance.TextMedium.Secondary" />
<TextView
android:id="@+id/report_legacy_tech"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginTop="@dimen/cm_browser_item_margin_top"
android:drawablePadding="@dimen/cm_browser_item_drawable_padding"
android:text="@string/management_legacy_tech_report"
android:textAppearance="@style/TextAppearance.TextMedium.Secondary"
app:drawableLeftCompat="@drawable/enterprise_legacy_tech" />
<TextView
android:id="@+id/threat_protection_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/cm_title_margin_top"
android:text="@string/management_threat_protection"
android:textAppearance="@style/TextAppearance.Headline2" />
<TextView
android:id="@+id/threat_protection_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/management_threat_protection_description"
android:textAppearance="@style/TextAppearance.TextMedium.Secondary" />
<CheckedTextView
android:id="@+id/threat_protection_more"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/cm_browser_margin_top"
android:text="@string/management_threat_protection_more"
android:textAppearance="@style/TextAppearance.TextMedium.Primary" />
<TextView
android:id="@+id/threat_protection_security_event"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/cm_browser_item_margin_top"
android:textAppearance="@style/TextAppearance.TextMedium.Primary" />
<TextView
android:id="@+id/threat_protection_security_event_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="@style/TextAppearance.TextMedium.Secondary" />
<TextView
android:id="@+id/threat_protection_page_visited"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/cm_browser_item_margin_top"
android:textAppearance="@style/TextAppearance.TextMedium.Primary" />
<TextView
android:id="@+id/threat_protection_page_visited_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="@style/TextAppearance.TextMedium.Secondary" />
</LinearLayout>
</org.chromium.chrome.browser.management.ManagementView>
|