如何在android中设置带有涟漪效果的按钮背景可绘制图像

时间:2016-09-28 04:28:50

标签: android background android-drawable ripple

我的Xml代码:

<Button
    android:id="@+id/link_btn"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/google_btn" />

我正在应用默认涟漪效应

<Button
    android:id="@+id/link_btn"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="?android:attr/selectableItemBackground" />

但我需要按钮背景"@drawable/google_btn"
"?android:attr/selectableItemBackground"。这意味着我需要自定义背景的涟漪效果。

4 个答案:

答案 0 :(得分:8)

drawable-v21文件夹中,您可以自己编写涟漪效果代码。制作一个可绘制的xml文件,并按ripple设置起始标记。像这样:

<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android" android:color="@color/colorAccentDark">
    <item>
        <selector xmlns:android="http://schemas.android.com/apk/res/android" >
            <item
                android:drawable="@color/button_accent_dark"
                android:state_checked="false"/>
            <item
                android:drawable="@color/button_accent"
                android:state_checked="true" />
            <item
                android:drawable="@color/button_accent_dark" />

        </selector>
    </item>
</ripple>

答案 1 :(得分:7)

当按钮具有drawable的背景时,我们可以为前景参数添加涟漪效果。检查下面的代码,它是否适用于具有不同背景的按钮

<Button
android:layout_width="wrap_content"
android:layout_height="40dp"
android:gravity="center"
android:layout_centerHorizontal="true"                                                             
android:background="@drawable/shape_login_button"
android:foreground="?attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:text="@string/action_button_login"
 />

为涟漪效果添加以下参数

android:foreground="?attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:focusable="true"

答案 2 :(得分:5)

<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="?android:colorControlHighlight" >

    <item
        android:id="@android:id/mask"
        android:drawable="@drawable/btn_rectangle"/>
    <item android:drawable="@drawable/btn_rect_states"/>

</ripple>

在drawables中尝试上面的代码,根据需要提供自己的自定义可绘制背景。

答案 3 :(得分:0)

另一个选择是创建可绘制的图层列表并将其设置为背景。例如:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/button_background"/>
    <item android:drawable="?attr/selectableItemBackground"/>
</layer-list>