2020-01-31 15:09:46 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
|
|
<Preference
|
2020-06-10 09:43:34 +02:00
|
|
|
app:title="@string/settings_font_title"
|
2020-01-31 15:09:46 +01:00
|
|
|
app:icon="@drawable/ic_font_size_24dp"
|
2020-06-10 09:43:34 +02:00
|
|
|
app:fragment="ml.docilealligator.infinityforreddit.Settings.FontPreferenceFragment" />
|
2020-01-31 15:09:46 +01:00
|
|
|
|
2020-06-13 16:11:57 +02:00
|
|
|
<Preference
|
2020-07-15 04:42:46 +02:00
|
|
|
app:key="immersive_interface_entry"
|
2020-01-31 15:09:46 +01:00
|
|
|
app:title="@string/settings_immersive_interface_title"
|
2020-07-15 04:42:46 +02:00
|
|
|
app:fragment="ml.docilealligator.infinityforreddit.Settings.ImmersiveInterfacePreferenceFragment"
|
|
|
|
app:isPreferenceVisible="false" />
|
2020-04-19 07:03:33 +02:00
|
|
|
|
2020-05-13 06:51:44 +02:00
|
|
|
<Preference
|
|
|
|
app:title="@string/settings_customize_tabs_in_main_page_title"
|
|
|
|
app:summary="@string/settings_customize_tabs_in_main_page_summary"
|
2020-08-20 05:02:00 +02:00
|
|
|
app:fragment="ml.docilealligator.infinityforreddit.Settings.CustomizeMainPageTabsTestFragment" />
|
2020-05-13 06:51:44 +02:00
|
|
|
|
2020-01-31 15:09:46 +01:00
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="false"
|
|
|
|
app:key="bottom_app_bar"
|
2020-04-04 10:10:25 +02:00
|
|
|
app:title="@string/settings_enable_bottom_app_bar_title"
|
|
|
|
app:summary="@string/settings_enable_bottom_app_bar_summary" />
|
2020-01-31 15:09:46 +01:00
|
|
|
|
2020-07-19 07:16:14 +02:00
|
|
|
<Preference
|
|
|
|
app:title="@string/settings_time_format_title"
|
|
|
|
app:fragment="ml.docilealligator.infinityforreddit.Settings.TimeFormatPreferenceFragment" />
|
2020-07-19 08:12:26 +02:00
|
|
|
|
2020-07-19 11:21:09 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
app:title="@string/settings_category_post_and_comment_title" />
|
|
|
|
|
2020-01-31 15:09:46 +01:00
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="false"
|
|
|
|
app:key="vote_buttons_on_the_right"
|
|
|
|
app:title="@string/settings_vote_buttons_on_the_right_title" />
|
|
|
|
|
2020-07-19 07:16:14 +02:00
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="true"
|
|
|
|
app:key="show_absolute_number_of_votes"
|
|
|
|
app:title="@string/settings_show_absolute_number_of_votes_title" />
|
|
|
|
|
|
|
|
<PreferenceCategory
|
|
|
|
app:title="@string/settings_category_post_title" />
|
2020-01-31 15:09:46 +01:00
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
app:defaultValue="0"
|
|
|
|
android:entries="@array/settings_default_post_layout"
|
|
|
|
app:entryValues="@array/settings_default_post_layout_values"
|
|
|
|
app:key="default_post_layout"
|
|
|
|
app:title="@string/settings_default_post_layout"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="true"
|
|
|
|
app:key="show_divider_in_compact_layout"
|
|
|
|
app:title="@string/settings_show_divider_in_compact_layout" />
|
|
|
|
|
2020-06-13 16:11:57 +02:00
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="false"
|
2020-07-09 16:29:22 +02:00
|
|
|
app:key="show_thumbnail_on_the_left_in_compact_layout"
|
|
|
|
app:title="@string/settings_show_thumbnail_on_the_left_in_compact_layout" />
|
2020-06-13 16:11:57 +02:00
|
|
|
|
2020-07-19 07:16:14 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
app:title="@string/settings_category_comment_title" />
|
|
|
|
|
2020-02-02 03:37:35 +01:00
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="false"
|
|
|
|
app:key="show_top_level_comments_first"
|
|
|
|
app:title="@string/settings_show_top_level_comments_first_title" />
|
|
|
|
|
2020-02-20 08:10:50 +01:00
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="false"
|
|
|
|
app:key="show_comment_divider"
|
|
|
|
app:title="@string/settings_show_comment_divider_title" />
|
|
|
|
|
2020-03-29 05:20:52 +02:00
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="false"
|
|
|
|
app:key="comment_toolbar_hidden"
|
|
|
|
app:title="@string/settings_comment_toolbar_hidden" />
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="true"
|
|
|
|
app:key="comment_toolbar_hide_on_click"
|
|
|
|
app:title="@string/settings_comment_toolbar_hide_on_click" />
|
|
|
|
|
2020-07-03 04:27:24 +02:00
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="false"
|
|
|
|
app:key="fully_collapse_comment"
|
|
|
|
android:title="@string/settings_fully_collapse_comment_title" />
|
|
|
|
|
2020-01-31 15:09:46 +01:00
|
|
|
</PreferenceScreen>
|