当前位置:   article > 正文

关于Android中Button的背景色无法修改的问题的解决方法_error: resource style/theme.material3.daynight.noa

error: resource style/theme.material3.daynight.noactionbar

关于Android中Button的背景色无法修改的问题的解决方法

问题描述

在修改Button的背景色时,始终无法修改,并且默认是蓝紫色。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:foreground="@mipmap/ic_launcher"
    android:foregroundGravity="left">

    <Button
        android:layout_width="300dp"
        android:layout_height="450dp"
        android:text="按钮1"
        android:background="#00FF00"
        />

    <Button
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:text="按钮2"
        android:textColor="@color/red"
        android:layout_gravity="center"
        />

</FrameLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

我这里把按钮1的背景色设置为绿色,但是实际效果还是蓝紫色。

image-20210902121918873

解决方法

找到app/res/values目录中的themes.xml文件,把样式改为其它样式。

<style name="Theme.MyApp2_1" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
  • 1

修改为

<style name="Theme.MyApp2_1" parent="Theme.MaterialComponents.DayNight.DarkActionBar.Bridge">
  • 1

注意:name属性值写你自己的应用名称,即无需改变name属性值,只需要改变parent属性值即可。

这样就可以设置按钮的背景色了。

image-20210902123622251

更多内容欢迎来访个人博客
个人B站

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