我更改了强调色。这是我的代码。
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorAccent">@android:color/darker_gray</item>
</style>
但像收音机按钮这样的东西并没有改变。生成的values.xml文件中的代码具有我无法在主题编辑器中编辑的所有这些颜色(在AndroidStudio中)。
像:
<color name="accent_material_dark">@color/material_deep_teal_200</color>
<color name="accent_material_light">@color/material_deep_teal_500</color>
我的目标是22,我的最低目标是15 ......我不知道这会产生什么影响-_-
如何编辑这些值?
答案 0 :(得分:0)
将colors.xml中的颜色值定义为
<color name="accent_material_dark">#999999</color>
<color name="accent_material_light">#787877</color>
只需用颜色值替换@ color / material_deep_teal_200。
并更新你的风格
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorAccent">@color/accent_material_dark</item>
</style>