一、问题
我们在打开app部分页面的时候状态栏是蓝色的,一闪而过。
二、原因和解决办法
我们在AndroidManifest.xml给application配置主题,然后主题是这一样的
<style name="*****" parent="*****"><!-- Customize your theme here. --><item name="colorPrimary">@color/colorPrimary</item><item name="colorPrimaryDark">@color/colorPrimaryDark</item><item name="colorAccent">@color/colorAccent</item></style>
直接修改colorPrimary和colorPrimaryDark成白色
<style name="*****" parent="*****"><!-- Customize your theme here. --><item name="colorPrimary">@color/white</item><item name="colorPrimaryDark">@color/white</item><item name="colorAccent">@color/colorAccent</item></style>