android:background在材质设计按钮组件中不起作用



我想在Kotlin开发的Android应用程序中制作一个渐变按钮。我已经为渐变背景制作了可绘制的文件,但当我为按钮提供自定义背景时,它不起作用,没有任何变化。这是渐变背景的代码,下面是按钮的XML代码。

<item>
<shape android:shape="rectangle">
<gradient android:startColor="@color/start_color"
android:endColor="@color/end_color"/>
<corners android:radius="10dp"/>
</shape>
</item>
<com.google.android.material.button.MaterialButton
android:layout_width="match_parent"
android:layout_height="55dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@+id/logo"
android:layout_marginHorizontal="26dp"
tools:layout_editor_absoluteX="16dp"
app:cornerRadius="10dp"
android:textSize="20sp"
android:text="Create an account"
android:background="@drawable/create_acc_btn"
android:fontFamily="@font/montserrat" />

您只需要修复渐变可绘制文件。

从中删除item标签,并将androidxml命名空间声明如下:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<gradient android:startColor="@color/start_color"
android:endColor="@color/end_color"/>
<corners android:radius="10dp"/>
</shape>

并将这一行添加到您的按钮xml代码中:

app:backgroundTint="@null"

没有这个,你的梯度背景将不会显示

注意:MaterialButton管理自己的背景以控制标高、形状、颜色和状态。考虑使用backgroundTint、shapeAppearance和其他可用属性。自定义背景将忽略这些属性,您应该考虑处理交互状态,如按下、聚焦和禁用

当使用自定义背景时,你也会失去涟漪效果。

相关内容

  • 没有找到相关文章

最新更新