2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2019-09-18 01:06:13 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory
|
|
|
|
android:layout="@layout/preference_category_title"
|
|
|
|
android:title="Advanced">
|
2018-08-22 23:24:07 +05:30
|
|
|
|
2019-04-09 22:59:48 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESeekBarPreference
|
|
|
|
android:defaultValue="30"
|
|
|
|
android:key="filter_song"
|
2019-11-08 23:13:34 +05:30
|
|
|
android:layout="@layout/list_item_view_seekbar"
|
2019-04-09 22:59:48 +05:30
|
|
|
android:max="60"
|
|
|
|
android:title="@string/pref_filter_song_title"
|
2019-11-08 23:13:34 +05:30
|
|
|
android:summary="@string/pref_filter_song_summary"
|
2019-04-09 22:59:48 +05:30
|
|
|
app:enableCopying="true"
|
2019-06-02 18:58:14 +05:30
|
|
|
app:icon="@drawable/ic_filter_song_white_24dp"
|
2019-04-09 22:59:48 +05:30
|
|
|
app:showSeekBarValue="true" />
|
2018-08-22 23:24:07 +05:30
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
|
2018-08-22 23:24:07 +05:30
|
|
|
android:defaultValue="false"
|
2018-11-05 19:23:07 +05:30
|
|
|
android:key="pause_on_zero_volume"
|
2019-11-08 23:13:34 +05:30
|
|
|
android:layout="@layout/list_item_view_switch"
|
2018-11-05 19:23:07 +05:30
|
|
|
android:summary="@string/pref_keep_pause_on_zero_volume_summary"
|
|
|
|
android:title="@string/pref_keep_pause_on_zero_volume_title"
|
2019-06-02 18:58:14 +05:30
|
|
|
app:enableCopying="true"
|
|
|
|
app:icon="@drawable/ic_pause_white_24dp" />
|
2018-08-22 23:24:07 +05:30
|
|
|
|
2019-04-09 22:59:48 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESwitchPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="keep_screen_on"
|
2019-11-05 00:13:54 +05:30
|
|
|
android:layout="@layout/list_item_view_switch"
|
2019-04-09 22:59:48 +05:30
|
|
|
android:summary="@string/pref_keep_screen_on_summary"
|
|
|
|
android:title="@string/pref_keep_screen_on_title"
|
2019-06-02 18:58:14 +05:30
|
|
|
app:enableCopying="true"
|
|
|
|
app:icon="@drawable/ic_settings_brigntness_white_24dp" />
|
2018-08-22 23:24:07 +05:30
|
|
|
|
2019-09-18 01:06:13 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.prefs.supportv7.ATESeekBarPreference
|
|
|
|
android:defaultValue="16"
|
|
|
|
android:key="dialog_corner"
|
2019-11-08 23:13:34 +05:30
|
|
|
android:layout="@layout/list_item_view_seekbar"
|
2019-09-18 01:06:13 +05:30
|
|
|
android:max="50"
|
2019-11-08 23:13:34 +05:30
|
|
|
android:summary="@string/pref_dialog_corner_summary"
|
2019-09-18 01:06:13 +05:30
|
|
|
android:title="@string/pref_dialog_corner_title"
|
|
|
|
app:enableCopying="true"
|
|
|
|
app:icon="@drawable/ic_rounded_corner"
|
|
|
|
app:showSeekBarValue="true" />
|
|
|
|
|
2018-08-22 23:24:07 +05:30
|
|
|
</code.name.monkey.appthemehelper.common.prefs.supportv7.ATEPreferenceCategory>
|
2018-08-30 14:59:30 +05:30
|
|
|
</androidx.preference.PreferenceScreen>
|