1
0
Fork 0
fenix/app/src/main/res/xml/preferences.xml

47 lines
2.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/preferences_category_basics">
<androidx.preference.Preference
android:icon="@drawable/mozac_ic_search"
android:key="@string/pref_key_search_engine"
android:title="@string/preferences_search_engine"/>
<androidx.preference.Preference
android:icon="@drawable/ic_login"
android:key="@string/pref_key_passwords"
android:title="@string/preferences_passwords"/>
<androidx.preference.Preference
android:icon="@drawable/ic_formfill"
android:key="@string/pref_key_credit_cards_addresses"
android:title="@string/preferences_credit_cards_addresses"/>
<androidx.preference.Preference
android:key="@string/pref_key_make_default_browser"
android:title="@string/preferences_set_as_default_browser"/>
</PreferenceCategory>
<PreferenceCategory android:title="@string/preferences_category_advanced">
<androidx.preference.Preference
android:icon="@drawable/ic_permission"
android:key="@string/pref_key_site_permissions"
android:title="@string/preferences_site_permissions"/>
<androidx.preference.Preference
android:icon="@drawable/ic_accessibility"
android:key="@string/pref_key_accessibility"
android:title="@string/preferences_accessibility"/>
<androidx.preference.Preference
android:icon="@drawable/ic_language"
android:key="@string/pref_key_language"
android:title="@string/preferences_language"/>
<androidx.preference.Preference
android:icon="@drawable/ic_data_collection"
android:key="@string/pref_key_data_choices"
android:title="@string/preferences_data_choices"/>
</PreferenceCategory>
</androidx.preference.PreferenceScreen>