Android改变状态栏statusbar背景色
Android开发中在某些界面为了保证显示一致性,可能需要调整statusBar的背景色,本文介绍了Android 4.4(API 19)和Android 5.0以上修改statusBar背景色的方案。其中5.0只需要修改styles.xml文件就可以修改statusbar背景色,而4.4使用了Toolbar来替代ActionBar的方案。
support-v7-appcompat在21版本之后做了很多修改,所以首先保证你的v7包在21以上。如果没有,请在Android Manager把v7包升级到该版本,或者在Android Studio gradle中如下
dependencies {
compile 'com.android.support:appcompat-v7:21.1.+'
}
1、修改styles.xml文件
<!-- 这个是给5.0使用的Style,其实完全可以在源代码中加判断这样就不需要多个style文件-->
<style name="AppTheme" parent="Theme.AppCompat">
<item name="android:textColorPrimary">#000000</item>
<item name="colorPrimary">#ff0000</item>
<item name="colorPrimaryDark">#00ff00</item>
<item name="colorAccent">#0000ff</item>
<!-- Customize your theme here. -->
</style>
<!-- 这个是给4.4使用的Style,其实完全可以在源代码中加判断这样就不需要多个style文件-->
<s