Use only one statement for new theme.

This commit is contained in:
M M Arif
2020-03-07 01:07:54 +05:00
parent 61f953d70d
commit 900b060c31
4 changed files with 7 additions and 19 deletions

View File

@@ -17,10 +17,7 @@ public abstract class BaseActivity extends AppCompatActivity {
final TinyDB tinyDb = new TinyDB(getApplicationContext());
if(tinyDb.getInt("themeId") == 0) {
setTheme(R.style.AppTheme);
}
else if(tinyDb.getInt("themeId") == 1) {
if(tinyDb.getInt("themeId") == 1) {
setTheme(R.style.AppThemeLight);
}
else {