2019-03-06 19:39:38 +00:00
|
|
|
<?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/. -->
|
|
|
|
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2019-09-18 18:26:44 +00:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/preferences_default_search_engine"
|
|
|
|
android:selectable="false"
|
2019-12-06 00:34:07 +00:00
|
|
|
app:iconSpaceReserved="false"
|
|
|
|
android:layout="@layout/preference_cat_style">
|
2019-09-14 04:29:11 +00:00
|
|
|
<org.mozilla.fenix.settings.search.RadioSearchEngineListPreference
|
2019-11-20 00:30:56 +00:00
|
|
|
android:key="@string/pref_key_search_engine_list"
|
2019-09-18 18:26:44 +00:00
|
|
|
android:selectable="false"/>
|
2019-11-27 08:45:05 +00:00
|
|
|
<Preference
|
|
|
|
android:key="@string/pref_key_add_search_engine"
|
|
|
|
android:title="@string/search_engine_add_custom_search_engine_title"
|
|
|
|
android:layout="@layout/preference_search_add_engine"/>
|
2019-11-11 16:39:56 +00:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/preferences_search_address_bar"
|
|
|
|
android:selectable="false"
|
2019-11-27 08:45:05 +00:00
|
|
|
app:iconSpaceReserved="false"
|
2019-12-06 00:34:07 +00:00
|
|
|
app:allowDividerAbove="false"
|
|
|
|
android:layout="@layout/preference_cat_style">
|
2019-10-03 15:53:16 +00:00
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/pref_key_show_search_shortcuts"
|
|
|
|
android:title="@string/preferences_show_search_shortcuts"
|
|
|
|
app:iconSpaceReserved="false"/>
|
2019-09-18 18:26:44 +00:00
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/pref_key_show_clipboard_suggestions"
|
|
|
|
android:title="@string/preferences_show_clipboard_suggestions"
|
|
|
|
app:iconSpaceReserved="false" />
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/pref_key_search_browsing_history"
|
|
|
|
android:title='@string/preferences_search_browsing_history'
|
|
|
|
app:iconSpaceReserved="false" />
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/pref_key_search_bookmarks"
|
|
|
|
android:title='@string/preferences_search_bookmarks'
|
|
|
|
app:iconSpaceReserved="false" />
|
2019-11-11 16:39:56 +00:00
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/pref_key_show_search_suggestions"
|
|
|
|
android:title="@string/preferences_show_search_suggestions"
|
|
|
|
app:iconSpaceReserved="false"
|
|
|
|
app:allowDividerAbove="false"/>
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:dependency="@string/pref_key_show_search_suggestions"
|
|
|
|
android:key="@string/pref_key_show_search_suggestions_in_private"
|
|
|
|
android:title="@string/preferences_show_search_suggestions_in_private"
|
|
|
|
android:layout="@layout/checkbox_left_preference"
|
|
|
|
app:allowDividerAbove="false"
|
|
|
|
app:iconSpaceReserved="true" />
|
2019-09-18 18:26:44 +00:00
|
|
|
</PreferenceCategory>
|
2019-03-06 19:39:38 +00:00
|
|
|
</PreferenceScreen>
|