The system bar has been processed, but when starting the APP, the system bar will still be blue for a moment. It's very simple to solve. In res/values/style, put the following code
<!-- Base application theme. --> <style name="AppTheme" parent=""> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> </style>
In-house@color/colorPrimaryDark
Change to@color/white
Or any other color
Summarize
The above is what the editor introduces to you to solve the problem that the system bar will turn blue when the Android APP is launched. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to everyone in time. Thank you very much for your support for my website!