如何用渐变添加涟漪效果到按钮?

时间:2017-06-23 18:32:36

标签: android button gradient ripple

我创建了一个按钮,我想为该按钮添加涟漪效果和渐变!

这是我的按钮代码:

<Button
    android:id="@+id/percentageButton"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:background="@drawable/gradient"
    android:gravity="center"
    android:text="%"
    android:textColor="@android:color/white"
    android:textSize="30dp">
</Button>

这是我的gradient.xml文件代码

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
    <corners
        android:radius="0dp"/>
    <gradient
        android:gradientRadius="100"
        android:centerX="49%"
        android:centerY="50%"
        android:centerColor="#434343"
        android:startColor="#0F0F0F"
        android:endColor="#141414"
        android:type="radial"/>
  </shape>

我已经尝试了所有的可能性,但没有得到如何实现这一点。

2 个答案:

答案 0 :(得分:4)

要在按下按钮时获得涟漪效果,只需将按钮xml更改为包括:

android:foreground="?attr/selectableItemBackground"

要在按钮上设置基本渐变,您可以:

 <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">
        <gradient
            android:angle="-90"
            android:startColor="COLORHERE"
            android:endColor="COLORHERE"
            android:type="linear" />
    </shape>

答案 1 :(得分:1)

android:foreground在Lollipop中对我不起作用,这里是按钮的xml drawable。 将button_background.xml添加到您的drawable。

<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="@color/colorPrimaryDark">
    <item android:id="@android:id/mask">
        <shape android:shape="rectangle">
            <solid android:color="@color/colorPrimaryDark" />
            <corners android:radius="@dimen/button_radius_large" />
        </shape>
    </item>

    <item android:id="@android:id/background">
        <shape android:shape="rectangle">
            <gradient
                android:angle="90"
                android:endColor="@color/colorPrimaryLight"
                android:startColor="@color/colorPrimary"
                android:type="linear" />
            <corners android:radius="@dimen/button_radius_large" />
        </shape>
    </item>
</ripple>

将其添加到按钮的背景中。

<Button
    ...
    android:background="@drawable/button_background" />

注意: 属性 android:前景 API 级别低于 23

没有影响