2020-10-19 12:03:49 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="false"
|
|
|
|
app:key="save_front_page_scrolled_position"
|
|
|
|
app:title="@string/settings_save_front_page_scrolled_position_title"
|
|
|
|
app:summary="@string/settings_save_front_page_scrolled_position_summary" />
|
|
|
|
|
2021-10-10 15:51:10 +02:00
|
|
|
<ListPreference
|
|
|
|
app:defaultValue="0"
|
|
|
|
app:entries="@array/link_handler"
|
|
|
|
app:entryValues="@array/link_handler_values"
|
2020-10-19 12:03:49 +02:00
|
|
|
app:icon="@drawable/ic_link"
|
2021-10-10 15:51:10 +02:00
|
|
|
app:key="link_handler"
|
|
|
|
app:title="@string/settings_link_handler_title"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2020-10-19 12:03:49 +02:00
|
|
|
|
2021-10-08 14:21:08 +02:00
|
|
|
<ListPreference
|
|
|
|
app:defaultValue="0"
|
|
|
|
app:entries="@array/main_page_back_button_action"
|
|
|
|
app:entryValues="@array/main_page_back_button_action_values"
|
|
|
|
app:key="main_page_back_button_action"
|
2020-10-19 12:03:49 +02:00
|
|
|
app:icon="@drawable/ic_exit_24dp"
|
2021-10-08 14:21:08 +02:00
|
|
|
app:title="@string/settings_main_page_back_button_action"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2020-10-19 12:03:49 +02:00
|
|
|
|
2020-12-02 11:47:11 +01:00
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="true"
|
|
|
|
app:key="enable_search_history"
|
2020-12-23 10:03:41 +01:00
|
|
|
app:title="@string/settings_enable_search_history_title"
|
2020-12-02 11:47:11 +01:00
|
|
|
app:summary="@string/only_for_logged_in_user" />
|
|
|
|
|
2020-11-30 17:12:16 +01:00
|
|
|
<ListPreference
|
|
|
|
app:defaultValue="auto"
|
|
|
|
app:entries="@array/settings_language"
|
|
|
|
app:entryValues="@array/settings_language_values"
|
|
|
|
app:key="language"
|
|
|
|
app:icon="@drawable/ic_language_24dp"
|
|
|
|
app:title="@string/settings_language_title"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
|
2020-10-19 12:03:49 +02:00
|
|
|
</PreferenceScreen>
|