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
|
|
|
|
app:title="@string/settings_font_size_title"
|
|
|
|
app:icon="@drawable/ic_font_size_24dp"
|
|
|
|
app:fragment="ml.docilealligator.infinityforreddit.Settings.FontSizePreferenceFragment" />
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="true"
|
|
|
|
app:key="immersive_interface"
|
|
|
|
app:title="@string/settings_immersive_interface_title"
|
|
|
|
app:isPreferenceVisible="false" />
|
|
|
|
|
|
|
|
<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
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="false"
|
|
|
|
app:key="vote_buttons_on_the_right"
|
|
|
|
app:title="@string/settings_vote_buttons_on_the_right_title" />
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="false"
|
|
|
|
app:key="show_elapsed_time"
|
|
|
|
app:title="@string/settings_show_elapsed_time" />
|
|
|
|
|
|
|
|
<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-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-02-20 17:27:04 +01:00
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="true"
|
|
|
|
app:key="show_absolute_number_of_votes"
|
|
|
|
app:title="@string/settings_show_absolute_number_of_votes_title" />
|
|
|
|
|
2020-01-31 15:09:46 +01:00
|
|
|
</PreferenceScreen>
|