force dark theme for images pager
This commit is contained in:
parent
d6ba1550e9
commit
29f105b14e
@ -244,7 +244,8 @@ public class ArticleImagesPagerActivity extends CommonActivity implements Gestur
|
|||||||
// we use that before parent onCreate so let's init locally
|
// we use that before parent onCreate so let's init locally
|
||||||
m_prefs = PreferenceManager
|
m_prefs = PreferenceManager
|
||||||
.getDefaultSharedPreferences(getApplicationContext());
|
.getDefaultSharedPreferences(getApplicationContext());
|
||||||
setAppTheme(m_prefs);
|
|
||||||
|
setDarkAppTheme(m_prefs);
|
||||||
|
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
|
|
||||||
|
@ -201,6 +201,16 @@ public class CommonActivity extends ActionBarActivity {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected void setDarkAppTheme(SharedPreferences prefs) {
|
||||||
|
String theme = prefs.getString("theme", CommonActivity.THEME_DEFAULT);
|
||||||
|
|
||||||
|
if (theme.equals(THEME_AMBER)) {
|
||||||
|
setTheme(R.style.AmberTheme);
|
||||||
|
} else {
|
||||||
|
setTheme(R.style.DarkTheme);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
@SuppressWarnings("deprecation")
|
||||||
@SuppressLint("NewApi")
|
@SuppressLint("NewApi")
|
||||||
protected int getScreenWidthInPixel() {
|
protected int getScreenWidthInPixel() {
|
||||||
|
Loading…
Reference in New Issue
Block a user