1.按钮Button无法改变背景色
原因: Android Studio 4.1之后的版本进行开发时,创建的项目默认的主题所有Button都是Material类型的Button,默认使用主题色,所以想要修改颜色,就要把默认主题给关了或替代了
解决方案:
方案一:<Button> 改为 <androidx.appcompat.widget.AppCompatButton>
方案二:打开themes.xml文件,将 <style name="Theme.Test3" parent="Theme.MaterialComponents.DayNight.DarkActionBar"> 改为 <style name="Theme.Test3" parent="Theme.MaterialComponents.DayNight.DarkActionBar.Bridge">,即后面加一个 “.Bridge”
==================== 华丽的分割线 =====================
标签:Button,主题,默认,Studio,Android,bug From: https://www.cnblogs.com/shuaishuaidefeizhu/p/17198445.html