Renamed the themes internally

This commit is contained in:
Karim Abou Zeid 2015-12-29 15:12:47 +01:00
commit 1383d9eb82
8 changed files with 24 additions and 24 deletions

View file

@ -101,16 +101,16 @@ public final class PreferenceUtil {
int value = Integer.parseInt(mPreferences.getString(GENERAL_THEME, "0"));
switch (value) {
case 0:
return R.style.Theme_MaterialMusic_Light;
return R.style.Theme_Phonograph_Light;
case 1:
return R.style.Theme_MaterialMusic;
return R.style.Theme_Phonograph;
case 2:
return R.style.Theme_MaterialMusic_Black;
return R.style.Theme_Phonograph_Black;
}
} catch (NumberFormatException ignored) {
}
return R.style.Theme_MaterialMusic_Light;
return R.style.Theme_Phonograph_Light;
}
public int getThemeColorPrimary(Context context) {