autocomplete.xml (1582B)
1 <?xml version="1.0" encoding="utf-8"?><!-- This Source Code Form is subject to the terms of the Mozilla Public 2 - License, v. 2.0. If a copy of the MPL was not distributed with this 3 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 4 <androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> 5 6 <androidx.preference.PreferenceCategory> 7 8 <org.mozilla.focus.autocomplete.AutocompleteDefaultDomainsPreference 9 android:defaultValue="true" 10 android:key="@string/pref_key_autocomplete_preinstalled" 11 android:summary="@string/preference_autocomplete_topsite_summary2" 12 android:title="@string/preference_switch_autocomplete_topsites" /> 13 14 </androidx.preference.PreferenceCategory> 15 16 <androidx.preference.PreferenceCategory> 17 18 <org.mozilla.focus.autocomplete.AutocompleteCustomDomainsPreference 19 android:defaultValue="true" 20 android:key="@string/pref_key_autocomplete_custom" 21 android:summary="@string/preference_autocomplete_user_list_summary2" 22 android:title="@string/preference_switch_autocomplete_user_list" /> 23 24 <androidx.preference.Preference 25 android:layout="@layout/focus_preference_no_icon" 26 android:dependency="@string/pref_key_autocomplete_custom" 27 android:key="@string/pref_key_screen_custom_domains" 28 android:title="@string/preference_autocomplete_subitem_manage_sites" /> 29 30 </androidx.preference.PreferenceCategory> 31 32 </androidx.preference.PreferenceScreen>