材质按钮背景渐变

时间:2018-07-27 16:11:33

标签: android material-components

有没有办法我可以从Google材质库中为MaterialButton设置渐变颜色。 app:backgroundTint仅设置颜色,而不设置渐变颜色

4 个答案:

答案 0 :(得分:4)

MaterialButton忽略了android:background,直到发布1.2.0-alpha06

在此版本中,您可以使用类似的内容:

<Button
    android:background="@drawable/bg_button_gradient"
    app:backgroundTint="@null"
    ... />

如果您需要在库的早期版本中使用此功能,则可以使用AppCompatButton。像这样:

<androidx.appcompat.widget.AppCompatButton
    android:background="@drawable/bg_button_gradient"

答案 1 :(得分:1)

对此不确定,但根据developer.android.com 我们甚至无法添加android:background,似乎无法将drawable添加到materialButton

答案 2 :(得分:0)

无法使用默认方法来做到这一点。最好使用渐变可绘制对象

创建一个新的xml文件并将其放在可绘制的图像中,然后将其作为背景添加到按钮中

gradient.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
   <gradient
      android:startColor="#000000"
      android:centerColor="#ffffff"
      android:endColor="#cfcfcf"
      android:angle="270" />
</shape>

layout.xml

 <Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/gradient"
    android:text="YourText" >

答案 3 :(得分:-1)

创建示例可绘制文件

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
    android:angle="135"
    android:centerColor="#6200ee"
    android:endColor="#6200ee"
    android:startColor="#3700b3"
    android:type="linear" />
 </shape>

并将此文件设置为按钮背景