autofill_preferences.xml (2390B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public 3 - License, v. 2.0. If a copy of the MPL was not distributed with this 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 5 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 6 xmlns:app="http://schemas.android.com/apk/res-auto"> 7 8 <androidx.preference.PreferenceCategory 9 android:layout="@layout/preference_cat_style" 10 android:title="@string/preferences_addresses"> 11 12 <SwitchPreference 13 android:defaultValue="true" 14 android:key="@string/pref_key_addresses_save_and_autofill_addresses" 15 android:summary="@string/preferences_addresses_save_and_autofill_addresses_summary_2" 16 android:title="@string/preferences_addresses_save_and_autofill_addresses_2" /> 17 <org.mozilla.fenix.settings.SyncPreference 18 android:key="@string/pref_key_addresses_sync_cards_across_devices" 19 android:title="@string/preferences_addresses_sync_addresses_across_devices" 20 app:singleLineTitle="false" 21 app:isPreferenceVisible="false" /> 22 <Preference 23 android:key="@string/pref_key_addresses_manage_addresses" 24 android:title="@string/preferences_addresses_manage_addresses" /> 25 </androidx.preference.PreferenceCategory> 26 27 <androidx.preference.PreferenceCategory 28 android:layout="@layout/preference_cat_style" 29 android:title="@string/preferences_credit_cards_2"> 30 <SwitchPreference 31 android:defaultValue="true" 32 android:key="@string/pref_key_credit_cards_save_and_autofill_cards" 33 android:summary="@string/preferences_credit_cards_save_and_autofill_cards_summary_2" 34 android:title="@string/preferences_credit_cards_save_and_autofill_cards_2" /> 35 <org.mozilla.fenix.settings.SyncPreference 36 android:key="@string/pref_key_credit_cards_sync_cards_across_devices" 37 android:title="@string/preferences_credit_cards_sync_cards_across_devices" 38 app:singleLineTitle="false" /> 39 <Preference 40 android:key="@string/pref_key_credit_cards_manage_cards" 41 android:title="@string/preferences_credit_cards_manage_saved_cards_2" /> 42 </androidx.preference.PreferenceCategory> 43 </PreferenceScreen>