Adpt official theme naming schema

This commit is contained in:
Dominik Schürmann
2015-08-12 17:09:07 +02:00
parent 65517f0d06
commit 0326bbce6b
4 changed files with 18 additions and 18 deletions

View File

@@ -59,9 +59,9 @@ public class ThemeChanger {
return false;
}
int themeId = R.style.LightTheme;
int themeId = R.style.Theme_Keychain_Light;
if (Constants.Pref.Theme.DARK.equals(newTheme)) {
themeId = R.style.DarkTheme;
themeId = R.style.Theme_Keychain_Dark;
}
ContextThemeWrapper w = new ContextThemeWrapper(mContext, themeId);