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">
|
|
|
|
|
2022-01-13 16:30:55 +01:00
|
|
|
<ml.docilealligator.infinityforreddit.customviews.CustomFontSwitchPreference
|
2020-10-19 12:03:49 +02:00
|
|
|
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" />
|
|
|
|
|
2022-01-13 16:30:55 +01:00
|
|
|
<ml.docilealligator.infinityforreddit.customviews.CustomFontListPreference
|
2021-10-10 15:51:10 +02:00
|
|
|
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
|
|
|
|
2022-01-13 16:30:55 +01:00
|
|
|
<ml.docilealligator.infinityforreddit.customviews.CustomFontListPreference
|
2021-10-08 14:21:08 +02:00
|
|
|
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
|
|
|
|
2022-01-13 16:30:55 +01:00
|
|
|
<ml.docilealligator.infinityforreddit.customviews.CustomFontSwitchPreference
|
2020-12-02 11:47:11 +01:00
|
|
|
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" />
|
|
|
|
|
2022-01-13 16:30:55 +01:00
|
|
|
<ml.docilealligator.infinityforreddit.customviews.CustomFontListPreference
|
2020-11-30 17:12:16 +01:00
|
|
|
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" />
|
|
|
|
|
2022-03-06 03:41:02 +01:00
|
|
|
<ml.docilealligator.infinityforreddit.customviews.CustomFontPreferenceCategory
|
|
|
|
app:title="@string/settings_miscellaneous_dangerous_group_title" />
|
|
|
|
|
|
|
|
<ml.docilealligator.infinityforreddit.customviews.CustomFontPreference
|
|
|
|
app:icon="@drawable/ic_info_preference_24dp"
|
|
|
|
app:summary="@string/settings_post_feed_max_resolution_warning_title"
|
|
|
|
app:enabled="false" />
|
|
|
|
|
|
|
|
<ml.docilealligator.infinityforreddit.customviews.CustomFontEditTextPreference
|
|
|
|
app:defaultValue="5000000"
|
|
|
|
app:key="post_feed_max_resolution"
|
|
|
|
app:title="@string/settings_post_feed_max_resolution_title"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
|
2020-10-19 12:03:49 +02:00
|
|
|
</PreferenceScreen>
|