tempus/app/src/main/res/xml/global_preferences.xml

74 lines
2.6 KiB
XML
Raw Normal View History

2021-04-27 11:12:20 +02:00
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
2020-11-20 15:38:08 +01:00
<PreferenceCategory app:title="@string/general_header">
<ListPreference
app:defaultValue="400000000"
app:dialogTitle="@string/covers_cache"
app:entries="@array/pref_cache_size_titles"
app:entryValues="@array/pref_cache_size_values"
app:key="image_cache_size"
app:title="@string/covers_cache"
app:useSimpleSummaryProvider="true" />
2021-08-10 14:05:07 +02:00
<ListPreference
app:defaultValue="400000000"
app:dialogTitle="@string/media_cache"
app:entries="@array/pref_media_cache_size_titles"
app:entryValues="@array/pref_media_cache_size_values"
app:key="media_cache_size"
app:title="@string/media_cache"
app:useSimpleSummaryProvider="true" />
<ListPreference
app:defaultValue="-1"
app:dialogTitle="@string/image_size"
app:entries="@array/pref_image_size_titles"
app:entryValues="@array/pref_image_size_values"
app:key="image_size"
app:title="@string/image_size"
app:useSimpleSummaryProvider="true" />
2020-11-20 15:38:08 +01:00
<ListPreference
app:defaultValue="default"
app:dialogTitle="@string/theme_selection"
app:entries="@array/themeListArray"
app:entryValues="@array/themeEntryArray"
app:key="themePref"
app:title="@string/theme_selection"
app:useSimpleSummaryProvider="true" />
2021-08-08 19:21:56 +02:00
<Preference
android:key="equalizer"
android:title="Equalizer"
app:summary="Adjust audio settings" />
<Preference
android:key="scan_library"
android:title="Scan library" />
2021-08-08 19:21:56 +02:00
<Preference
android:key="logout"
android:title="Log out" />
2021-08-03 17:05:21 +02:00
2020-11-20 15:38:08 +01:00
</PreferenceCategory>
2021-04-15 10:37:08 +02:00
<PreferenceCategory app:title="@string/about_header">
<Preference
app:selectable="false"
app:summary="@string/summary_about" />
<Preference
2021-04-27 11:12:20 +02:00
app:summary="@string/app_version"
app:title="@string/title_version" />
2021-04-15 10:37:08 +02:00
<!-- preference opens url in browser -->
<Preference
2021-04-27 11:12:20 +02:00
app:summary="@string/development"
app:title="@string/github_page">
2021-04-15 10:37:08 +02:00
<intent
android:action="android.intent.action.VIEW"
android:data="@string/github_url" />
</Preference>
</PreferenceCategory>
2020-11-20 15:38:08 +01:00
</PreferenceScreen>