android项目背景颜色问题
lxh023 opened this issue · 1 comments
lxh023 commented
lxh023 commented
我知道原因了,是在..\app\src\main\res\values下有一个color.xml,
<color name="colorPrimary">#008577</color> <color name="colorPrimaryDark">#00574B</color> <color name="colorAccent">#D81B60</color>
第一项跟第二项就是绿色、深绿色。。。。
把这三项改为
<color name="colorPrimary">#3F51B5</color> <color name="colorPrimaryDark">#303F9F</color> <color name="colorAccent">#FF4081</color>
就可以了。样式颜色的问题