Added option to disable album art on lockscreen.
This commit is contained in:
parent
456fc40cd7
commit
5a1503ed7b
5 changed files with 81 additions and 30 deletions
|
|
@ -102,6 +102,7 @@
|
|||
<string name="pref_title_general_theme">General Theme</string>
|
||||
<string name="pref_header_audio">Audio</string>
|
||||
<string name="pref_header_general">General</string>
|
||||
<string name="pref_header_lockscreen">Lockscreen</string>
|
||||
<string name="pref_summary_colored_navigation_bar">In which views the navigation bar should be colored.</string>
|
||||
<string name="pref_title_navigation_bar">Colored Navigation Bar</string>
|
||||
<string name="pref_title_set_default_start_page">Start Page</string>
|
||||
|
|
@ -112,6 +113,7 @@
|
|||
<string name="pref_title_colored_navigation_bar_tag_editor">Tag Editor</string>
|
||||
<string name="pref_title_colored_navigation_bar_other_screens">Everywhere Else</string>
|
||||
<string name="pref_title_colored_album_footers">Colored Album Footers</string>
|
||||
<string name="pref_title_album_art_on_lockscreen">Album Art on Lockscreen</string>
|
||||
<string name="pref_title_colored_notification">Colored Notification</string>
|
||||
<string name="pref_title_fade_play_pause">Fade Play/Pause</string>
|
||||
<string name="pref_title_gapless_playback">Gapless Playback</string>
|
||||
|
|
@ -148,6 +150,7 @@
|
|||
<string name="song">Song</string>
|
||||
<string name="pref_only_lollipop">"Only available on Lollipop."</string>
|
||||
<string name="pref_summary_colored_album_footers">"Album footers in the grid are colored with the album cover\'s vibrant color."</string>
|
||||
<string name="pref_summary_album_art_on_lockscreen">The album art is shown on the lockscreen. You might have to restart Phonograph in order for changes to take affect.</string>
|
||||
<string name="pref_summary_colored_notification">"The notification is colored with the album cover\'s vibrant color."</string>
|
||||
<string name="pref_summary_fade_play_pause">"Fades the song in/out on play/pause."</string>
|
||||
<string name="pref_summary_gapless_playback">"Eliminates the gap between two songs. Disabling this might fix playback issues."</string>
|
||||
|
|
|
|||
15
app/src/main/res/xml/pref_lockscreen.xml
Normal file
15
app/src/main/res/xml/pref_lockscreen.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<com.kabouzeid.gramophone.prefs.DynamicPreferenceCategory android:title="@string/pref_header_lockscreen">
|
||||
|
||||
<CheckBoxPreference
|
||||
android:layout="@layout/preference_custom"
|
||||
android:defaultValue="true"
|
||||
android:key="album_art_on_lockscreen"
|
||||
android:title="@string/pref_title_album_art_on_lockscreen"
|
||||
android:summary="@string/pref_summary_album_art_on_lockscreen"
|
||||
android:widgetLayout="@layout/preference_dynamic_checkbox" />
|
||||
|
||||
</com.kabouzeid.gramophone.prefs.DynamicPreferenceCategory>
|
||||
|
||||
</PreferenceScreen>
|
||||
Loading…
Add table
Add a link
Reference in a new issue