按钮的背景色不会改变。
代码如下:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/purple_500">
<Button
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_margin="5dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
android:background="@color/white"/>
</androidx.constraintlayout.widget.ConstraintLayout>
这就是布局和蓝图的外观:
3条答案
按热度按时间ocebsuys1#
我不能添加简单的评论抱歉,所以这里是我的解决方案;可以使用backgroundtint属性而不是background,也可以为按钮添加自定义样式https://stackoverflow.com/a/31858629/13447094
efzxgjgh2#
而不是
android:background
使用app:backgroundTint
.这将使您的代码如下所示:
rbpvctlc3#
另一种方法是themeoverlay,你可以这样做themeoverlay:
然后
colorprimary=按钮的背景
coloronprimary=text按钮的颜色