当前位置:   article > 正文

AndroidStudio无法改变Button背景颜色解决办法_android studio button颜色改不了

android studio button颜色改不了

使用版本:android studio-hedgehog(2023年的刺猬版)

问题描述:由图观测到Button设置的是#cccccc(灰色),但按钮仍然为紫色

问题原因:此版本默认使用的主题,覆盖了Button的背景色设置

解决办法:在工程里找到themes.xml文件打开(工程→项目→res→values→themes.xml)

  1. <resources xmlns:tools="http://schemas.android.com/tools">
  2. <!-- Base application theme. -->
  3. <style name="Base.Theme.MyApplication" parent="Theme.Material3.DayNight.NoActionBar">
  4. <!-- Customize your light theme here. -->
  5. <!-- <item name="colorPrimary">@color/my_light_primary</item> -->
  6. </style>
  7. <style name="Theme.MyApplication" parent="Base.Theme.MyApplication" />
  8. </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'

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/609020
推荐阅读
相关标签
  

闽ICP备14008679号