赞
踩
使用版本:android studio-hedgehog(2023年的刺猬版)
问题描述:由图观测到Button设置的是#cccccc(灰色),但按钮仍然为紫色
问题原因:此版本默认使用的主题,覆盖了Button的背景色设置
解决办法:在工程里找到themes.xml文件打开(工程→项目→res→values→themes.xml)
- <resources xmlns:tools="http://schemas.android.com/tools">
- <!-- Base application theme. -->
- <style name="Base.Theme.MyApplication" parent="Theme.Material3.DayNight.NoActionBar">
- <!-- Customize your light theme here. -->
- <!-- <item name="colorPrimary">@color/my_light_primary</item> -->
- </style>
-
- <style name="Theme.MyApplication" parent="Base.Theme.MyApplication" />
- </resources>
把其中
<style name="Base.Theme.MyApplication" parent="Theme.Material3.DayNight.NoActionBar">
parent后面的值改为Theme.MaterialComponents.DayNight.NoActionBar.Bridge
<style name="Base.Theme.MyApplication" parent="Theme.MaterialComponents.DayNight.NoActionBar.Bridge">
注意,是替换文本,按照网络上很多解决办法说的直接在末尾加.Bridge会报error:
Cannot resolve symbol 'Theme.Material3.DayNight.NoActionBar.Bridge'
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。