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
|
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2024 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<org.chromium.components.browser_ui.settings.ChromeSwitchPreference
android:key="ip_protection_switch"
android:title="@string/incognito_tracking_protections_ip_protection_toggle_label"
android:summary="@string/incognito_tracking_protections_ip_protection_toggle_sublabel" />
<PreferenceCategory
android:title="@string/incognito_tracking_protections_when_on"/>
<org.chromium.components.browser_ui.settings.TextMessagePreference
android:key="ipp_when_on"
android:summary="@string/incognito_tracking_protections_ip_protection_when_on"
android:icon="@drawable/network_ping"
android:drawablePadding="16dp"
android:layout_marginVertical="16dp"
app:allowDividerBelow="false" />
<PreferenceCategory
android:title="@string/incognito_tracking_protections_things_to_consider"/>
<org.chromium.components.browser_ui.settings.TextMessagePreference
android:key="ipp_things_to_consider_one"
android:summary="@string/incognito_tracking_protections_ip_protection_things_to_consider_bullet_one"
android:icon="@drawable/preview"
android:drawablePadding="16dp"
android:layout_marginVertical="16dp"
app:allowDividerBelow="false" />
<org.chromium.components.browser_ui.settings.TextMessagePreference
android:key="ipp_things_to_consider_three"
android:summary="@string/incognito_tracking_protections_ip_protection_things_to_consider_bullet_two"
android:icon="@drawable/account_circle"
android:drawablePadding="16dp"
android:layout_marginVertical="16dp"
app:allowDividerBelow="false" />
<org.chromium.components.browser_ui.settings.TextMessagePreference
android:key="ipp_things_to_consider_three"
android:summary="@string/incognito_tracking_protections_ip_protection_things_to_consider_bullet_three"
android:icon="@drawable/google"
android:drawablePadding="16dp"
android:layout_marginVertical="16dp"
app:allowDividerBelow="false" />
</PreferenceScreen>
|