参考链接:https://www.cnblogs.com/steffen/p/9261977.html
不知道为什么(可能是安卓版本更新了),新建项目的初始颜色变成了紫色,有点辣眼睛,翻找寒假时候项目的文件找到了修改方法。
按照路径:res-values-themes
进行如下配置:
<item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item>
<item name="android:statusBarColor" tools:targetApi="l">@color/colorPrimaryDark</item>
就恢复了原来好看的绿色。