StatusBarColor 不变
StatusBarColor doesn't change
我已经导入了这个库https://github.com/neokree/MaterialNavigationDrawer
为了我的 NavigationDrawer
。我使用了建议的主题:
<style name="AppTheme" parent="MaterialNavigationDrawerTheme.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">#8bc34a</item>
<item name="colorPrimaryDark">#558b2f</item>
<item name="colorAccent">#FFFFFF</item>
<item name="singleAccount">true</item>
</style>
当我创建一个新的 ActionBarActivity
时,状态栏是白色的,我不明白为什么。 colorPrimaryDark
被忽略。
如何让状态栏变成默认颜色?
将此代码写入 activity
的 oncreate
函数中
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
getWindow().setStatusBarColor(Color.parseColor("#0288d1"));
}
我已经导入了这个库https://github.com/neokree/MaterialNavigationDrawer
为了我的 NavigationDrawer
。我使用了建议的主题:
<style name="AppTheme" parent="MaterialNavigationDrawerTheme.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">#8bc34a</item>
<item name="colorPrimaryDark">#558b2f</item>
<item name="colorAccent">#FFFFFF</item>
<item name="singleAccount">true</item>
</style>
当我创建一个新的 ActionBarActivity
时,状态栏是白色的,我不明白为什么。 colorPrimaryDark
被忽略。
如何让状态栏变成默认颜色?
将此代码写入 activity
的oncreate
函数中
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
getWindow().setStatusBarColor(Color.parseColor("#0288d1"));
}