diff options
author | ByteHamster <info@bytehamster.com> | 2020-01-27 09:39:23 +0100 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2020-01-29 11:04:08 +0100 |
commit | 0c7dd3cc24e6ab8c2b529a00edb6a2057c048218 (patch) | |
tree | 66ff1ff64e20fb8c978136398752aee3b6809f9e /app/src/main/res/xml | |
parent | c83f71d6e95eb4f6126202595d9f6ac3baeedcc1 (diff) | |
download | AntennaPod-0c7dd3cc24e6ab8c2b529a00edb6a2057c048218.zip |
Added summaries
Diffstat (limited to 'app/src/main/res/xml')
-rw-r--r-- | app/src/main/res/xml/preferences_import_export.xml | 39 | ||||
-rw-r--r-- | app/src/main/res/xml/preferences_storage.xml | 4 |
2 files changed, 29 insertions, 14 deletions
diff --git a/app/src/main/res/xml/preferences_import_export.xml b/app/src/main/res/xml/preferences_import_export.xml index 72ca82fd5..6489ca493 100644 --- a/app/src/main/res/xml/preferences_import_export.xml +++ b/app/src/main/res/xml/preferences_import_export.xml @@ -2,17 +2,30 @@ <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" xmlns:search="http://schemas.android.com/apk/com.bytehamster.lib.preferencesearch"> - <Preference - android:key="prefOpmlExport" - android:title="@string/opml_export_label"/> - <Preference - android:key="prefOpmlImport" - android:title="@string/opml_import_label"/> - <Preference - android:key="prefHtmlExport" - android:title="@string/html_export_label"/> - <Preference - android:key="importExport" - search:keywords="@string/import_export_search_keywords" - android:title="@string/import_export"/> + + <PreferenceCategory android:title="@string/opml"> + <Preference + android:key="prefOpmlExport" + android:title="@string/opml_export_label" + android:summary="@string/opml_export_summary"/> + <Preference + android:key="prefOpmlImport" + android:title="@string/opml_import_label" + android:summary="@string/opml_import_summary"/> + </PreferenceCategory> + + <PreferenceCategory android:title="@string/html"> + <Preference + android:key="prefHtmlExport" + android:title="@string/html_export_label" + android:summary="@string/html_export_summary"/> + </PreferenceCategory> + + <PreferenceCategory android:title="@string/database"> + <Preference + android:key="importExport" + search:keywords="@string/import_export_search_keywords" + android:title="@string/import_export" + android:summary="@string/database_export_summary"/> + </PreferenceCategory> </PreferenceScreen> diff --git a/app/src/main/res/xml/preferences_storage.xml b/app/src/main/res/xml/preferences_storage.xml index fbadf865b..18e2abb31 100644 --- a/app/src/main/res/xml/preferences_storage.xml +++ b/app/src/main/res/xml/preferences_storage.xml @@ -33,5 +33,7 @@ android:title="@string/pref_delete_removes_from_queue_title"/> <Preference android:title="@string/import_export_pref" - android:key="prefImportExport"/> + android:summary="@string/import_export_summary" + android:key="prefImportExport" + search:ignore="true"/> </PreferenceScreen> |