Changed the default settings. Fixed settings layout bug. Synced translations.
This commit is contained in:
parent
b07e602651
commit
b32feb38fe
15 changed files with 255 additions and 222 deletions
|
|
@ -37,8 +37,8 @@ public final class PreferenceUtils {
|
|||
public static final String OPAQUE_TOOLBAR_NOW_PLAYING = "opaque_toolbar_now_playing";
|
||||
public static final String OPAQUE_STATUSBAR_NOW_PLAYING = "opaque_statusbar_now_playing";
|
||||
public static final String FORCE_SQUARE_ALBUM_ART = "force_square_album_art";
|
||||
public static final String SMALLER_TITLE_BOX_NOW_PLAYING = "smaller_title_box_now_playing";
|
||||
public static final String TRADITIONAL_PROGRESS_SLIDER_NOW_PLAYING = "traditional_progress_slider_now_playing";
|
||||
public static final String LARGER_TITLE_BOX_NOW_PLAYING = "larger_title_box_now_playing";
|
||||
public static final String ALTERNATIVE_PROGRESS_SLIDER_NOW_PLAYING = "alternative_progress_slider_now_playing";
|
||||
public static final String PLAYBACK_CONTROLLER_CARD_NOW_PLAYING = "playback_controller_card_now_playing";
|
||||
|
||||
private static PreferenceUtils sInstance;
|
||||
|
|
@ -179,12 +179,12 @@ public final class PreferenceUtils {
|
|||
return mPreferences.getBoolean(PLAYBACK_CONTROLLER_CARD_NOW_PLAYING, false);
|
||||
}
|
||||
|
||||
public final boolean smallerTitileBoxNowPlaying() {
|
||||
return mPreferences.getBoolean(SMALLER_TITLE_BOX_NOW_PLAYING, false);
|
||||
public final boolean largerTitleBoxNowPlaying() {
|
||||
return mPreferences.getBoolean(LARGER_TITLE_BOX_NOW_PLAYING, false);
|
||||
}
|
||||
|
||||
public final boolean traditionalProgressSliderNowPlaying() {
|
||||
return mPreferences.getBoolean(TRADITIONAL_PROGRESS_SLIDER_NOW_PLAYING, false);
|
||||
public final boolean alternativeProgressSliderNowPlaying() {
|
||||
return mPreferences.getBoolean(ALTERNATIVE_PROGRESS_SLIDER_NOW_PLAYING, false);
|
||||
}
|
||||
|
||||
// public final boolean downloadMissingArtistImages() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue