- android4.4之后允许修改状态栏颜色,先看下各个部分的名称如下图:
则在样式中直接定义颜色:
<style name="AppBaseTheme_Night" parent="@style/Theme.AppCompat">
<item name="colorPrimary">@color/night_colorPrimary</item>
</style>
去除actionbar下阴影:
<item name="android:windowContentOverlay">@null</item>