67 lines
2.4 KiB
XML
67 lines
2.4 KiB
XML
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<PreferenceCategory
|
|
android:title="@string/pref_selfoss_category">
|
|
|
|
</PreferenceCategory>
|
|
<EditTextPreference
|
|
android:defaultValue="20"
|
|
android:inputType="number"
|
|
android:key="prefer_api_items_number"
|
|
android:selectAllOnFocus="true"
|
|
android:singleLine="true"
|
|
android:title="@string/pref_api_items_number_title"
|
|
app:iconSpaceReserved="false"/>
|
|
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:key="infinite_loading"
|
|
android:title="@string/pref_general_infinite_loading_title"
|
|
app:iconSpaceReserved="false"/>
|
|
<PreferenceCategory
|
|
android:title="@string/pref_general_category_links">
|
|
|
|
</PreferenceCategory>
|
|
<SwitchPreference
|
|
android:defaultValue="true"
|
|
android:key="prefer_article_viewer"
|
|
android:summaryOff="@string/pref_article_viewer_off"
|
|
android:summaryOn="@string/pref_article_viewer_on"
|
|
android:title="@string/pref_article_viewer_title"
|
|
app:iconSpaceReserved="false"/>
|
|
|
|
<PreferenceCategory
|
|
android:title="@string/pref_general_category_displaying">
|
|
|
|
</PreferenceCategory>
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:key="card_view_active"
|
|
android:summaryOff="@string/pref_switch_card_view_off"
|
|
android:summaryOn="@string/pref_switch_card_view_on"
|
|
android:title="@string/pref_switch_card_view_title"
|
|
app:iconSpaceReserved="false"/>
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:dependency="card_view_active"
|
|
android:key="full_height_cards"
|
|
android:summaryOff="@string/card_height_off"
|
|
android:summaryOn="@string/card_height_on"
|
|
android:title="@string/card_height_title"
|
|
app:iconSpaceReserved="false"/>
|
|
<SwitchPreference
|
|
android:defaultValue="true"
|
|
android:key="display_unread_count"
|
|
android:summaryOn="@string/switch_unread_count"
|
|
android:title="@string/switch_unread_count_title"
|
|
app:iconSpaceReserved="false"/>
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:dependency="display_unread_count"
|
|
android:key="display_other_count"
|
|
android:title="@string/display_all_counts_title"
|
|
app:iconSpaceReserved="false"/>
|
|
|
|
</PreferenceScreen>
|