Disabled colored Navigation Bar by default.

This commit is contained in:
Karim Abou Zeid 2015-08-14 21:16:32 +02:00
commit 93e1a9410e
3 changed files with 3 additions and 3 deletions

View file

@ -121,7 +121,7 @@ public final class PreferenceUtil {
} }
public final boolean shouldUseColoredNavigationBar() { public final boolean shouldUseColoredNavigationBar() {
return mPreferences.getBoolean(COLORED_NAVIGATION_BAR, true); return mPreferences.getBoolean(COLORED_NAVIGATION_BAR, false);
} }
@SuppressLint("CommitPrefEdits") @SuppressLint("CommitPrefEdits")

View file

@ -125,7 +125,7 @@
<string name="pref_title_larger_title_box_now_playing">Larger Title Box</string> <string name="pref_title_larger_title_box_now_playing">Larger Title Box</string>
<string name="pref_title_alternative_progress_slider_now_playing">Alternative Progress Slider</string> <string name="pref_title_alternative_progress_slider_now_playing">Alternative Progress Slider</string>
<string name="pref_title_playback_controller_card_now_playing">Show Card below Playback Controllers</string> <string name="pref_title_playback_controller_card_now_playing">Show Card below Playback Controllers</string>
<string name="pref_title_hide_bottom_bar">Hide bottom bar</string> <string name="pref_title_hide_bottom_bar">Hide Bottom Bar</string>
<string name="no_equalizer">No equalizer found.</string> <string name="no_equalizer">No equalizer found.</string>
<string name="no_audio_ID">"No audio ID, play something and try again."</string> <string name="no_audio_ID">"No audio ID, play something and try again."</string>
<string name="navigation_drawer_open">Open Navigation Drawer</string> <string name="navigation_drawer_open">Open Navigation Drawer</string>

View file

@ -31,7 +31,7 @@
android:widgetLayout="@layout/preference_dynamic_checkbox" /> android:widgetLayout="@layout/preference_dynamic_checkbox" />
<CheckBoxPreference <CheckBoxPreference
android:defaultValue="true" android:defaultValue="false"
android:key="should_color_navigation_bar" android:key="should_color_navigation_bar"
android:layout="@layout/preference_custom" android:layout="@layout/preference_custom"
android:summary="@string/pref_summary_colored_navigation_bar" android:summary="@string/pref_summary_colored_navigation_bar"