mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-17 23:55:21 +01:00
49 lines
No EOL
2.4 KiB
XML
Executable file
49 lines
No EOL
2.4 KiB
XML
Executable file
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory
|
|
android:layout="@layout/preference_category_title"
|
|
android:title="Advanced">
|
|
|
|
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESeekBarPreference
|
|
android:defaultValue="30"
|
|
android:key="filter_song"
|
|
android:layout="@layout/list_item_view_seekbar"
|
|
android:max="60"
|
|
android:title="@string/pref_filter_song_title"
|
|
android:summary="@string/pref_filter_song_summary"
|
|
app:enableCopying="true"
|
|
app:icon="@drawable/ic_filter_song_white_24dp"
|
|
app:showSeekBarValue="true" />
|
|
|
|
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
|
|
android:defaultValue="false"
|
|
android:key="pause_on_zero_volume"
|
|
android:layout="@layout/list_item_view_switch"
|
|
android:summary="@string/pref_keep_pause_on_zero_volume_summary"
|
|
android:title="@string/pref_keep_pause_on_zero_volume_title"
|
|
app:enableCopying="true"
|
|
app:icon="@drawable/ic_pause_white_24dp" />
|
|
|
|
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
|
|
android:defaultValue="false"
|
|
android:key="keep_screen_on"
|
|
android:layout="@layout/list_item_view_switch"
|
|
android:summary="@string/pref_keep_screen_on_summary"
|
|
android:title="@string/pref_keep_screen_on_title"
|
|
app:enableCopying="true"
|
|
app:icon="@drawable/ic_settings_brigntness_white_24dp" />
|
|
|
|
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESeekBarPreference
|
|
android:defaultValue="16"
|
|
android:key="dialog_corner"
|
|
android:layout="@layout/list_item_view_seekbar"
|
|
android:max="50"
|
|
android:summary="@string/pref_dialog_corner_summary"
|
|
android:title="@string/pref_dialog_corner_title"
|
|
app:enableCopying="true"
|
|
app:icon="@drawable/ic_rounded_corner"
|
|
app:showSeekBarValue="true" />
|
|
|
|
</code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory>
|
|
</androidx.preference.PreferenceScreen> |