使用按钮背景颜色为我的按钮添加涟漪效果?

问题描述 投票:83回答:12

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

我创建了一个按钮bg XML文件:(bg_btn.xml)

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<gradient android:startColor="#FFFFFF" android:endColor="#00FF00" android:angle="270" />
<corners android:radius="3dp" />
<stroke android:width="5px" android:color="#000000" />
</shape>

这是我的涟漪效应文件:(ripple_bg.xml)

<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:color="#f816a463"
    tools:targetApi="lollipop">
    <item android:id="@android:id/mask">
        <shape android:shape="rectangle">
            <solid android:color="#f816a463" />
        </shape>
    </item>
</ripple>

这是我想要添加涟漪效果的按钮:

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button"
android:layout_centerHorizontal="true"
android:layout_marginTop="173dp"
android:textColor="#fff"
android:background="@drawable/ripple_bg"
android:clickable="true" />

但添加涟漪效果后按钮背景是透明的,只有在点击时才会显示按钮,如下所示:

点击之前

点击

但我需要按钮背景颜色和涟漪效果,我在Stack Overflow的不同博客中发现了一些此代码,但它仍然无效!

android android-layout android-drawable rippledrawable
12个回答
102
投票

这是另一个可绘制的xml,适合那些想要将渐变背景,圆角半径和涟漪效果加在一起的人:

<?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" />

4
投票

试试这个

<Button
            android:id="@+id/btn_location"
            android:layout_width="121dp"
            android:layout_height="38dp"
            android:layout_gravity="center"
            android:layout_marginBottom="24dp"
            android:layout_marginTop="24dp"
            android:foreground="?attr/selectableItemBackgroundBorderless"
            android:clickable="true"
            android:background="@drawable/btn_corner"
            android:gravity="center_vertical|center_horizontal"
            android:paddingLeft="13dp"
            android:paddingRight="13dp"
            android:text="Save"
            android:textColor="@color/color_white" />

3
投票

只需使用:

android:backgroundTint="#f816a463"

代替:

android:background="#f816a463"

别忘了将你的Button改为android.support.v7.widget.AppCompatButton


1
投票

使用<ripple>标签的替代解决方案(我个人不喜欢这样做,因为颜色不是“默认”),如下:

为按钮背景创建一个drawable,并在<item android:drawable="?attr/selectableItemBackground">中包含<layer-list>

然后(我认为这是重要的部分)以编程方式在您的按钮实例上设置backgroundResource(R.drawable.custom_button)

活性/片段

Button btn_temp = view.findViewById(R.id.btn_temp);
btn_temp.setBackgroundResource(R.drawable.custom_button);

布局

<Button
    android:id="@+id/btn_temp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/custom_button"
    android:text="Test" />

custom_button.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle">
            <solid android:color="@android:color/white" />
            <corners android:radius="10dp" />
        </shape>
    </item>
    <item android:drawable="?attr/selectableItemBackground" />
</layer-list>

121
投票

"?attr/selectableItemBackground"添加到视图的foreground属性中,如果它已经有背景和android:clickable="true"


56
投票

将涟漪效果/动画添加到Android按钮

只需用android:background =“?attr / selectableItemBackground”替换你的按钮背景属性,你的代码就像这样。

      <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="?attr/selectableItemBackground"
        android:text="New Button" />

将波纹效果/动画添加到Android按钮的另一种方法

使用此方法,您可以自定义涟漪效果颜色。首先,您必须在drawable资源目录中创建一个xml文件。创建ripple_effect.xml文件并添加以下代码。 RES /抽拉/ ripple_effect.xml

<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:color="#f816a463"
    tools:targetApi="lollipop">
    <item android:id="@android:id/mask">
        <shape android:shape="rectangle">
            <solid android:color="#f816a463" />
        </shape>
    </item>
</ripple>

并将按钮的背景设置为上面的可绘制资源文件

<Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/ripple_effect"
    android:padding="16dp"
    android:text="New Button" />

31
投票

除了Jigar Patel的解决方案之外,还要将其添加到ripple.xml以避免按钮的透明背景。

<item
    android:id="@android:id/background"
    android:drawable="@color/your-color" />

完整的xml:

<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:color="@color/your-color"
    tools:targetApi="lollipop">
    <item android:id="@android:id/mask">
        <shape android:shape="rectangle">
            <solid android:color="@color/your-color" />
        </shape>
    </item>
    <item
        android:id="@android:id/background"
        android:drawable="@color/your-color" />
</ripple>

在按钮中使用此ripple.xml作为背景:

android:background="@drawable/ripple"

27
投票

当按钮具有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"

有关参考,请参阅下面的链接https://jascode.wordpress.com/2017/11/11/how-to-add-ripple-effect-to-an-android-app/


9
投票

AppCompat v7+

如果你没有?android:的前缀,你的应用程序将崩溃。

您应该根据自己的喜好使用"?android:attr/selectableItemBackground""?android:attr/selectableItemBackgroundBorderless"。我更喜欢Borderless

您可以将它放在android:backgroundandroid:foreground中以保留现有属性。

元素必须有android:clickable="true"android:focusable="true"才能使它工作,但许多元素,如按钮,默认情况下都有true

<Button
    ...
    android:background="@color/white"
    android:foreground="?android:attr/selectableItemBackgroundBorderless"
/>
<TextView
    ...
    android:background="?android:attr/selectableItemBackgroundBorderless"
    android:clickable="true"
    android:focusable="true"
/>

6
投票

添加前景和可点击属性对我有用。

<Button
    ... 
    android:background="@color/your_color"
    android:foreground="?attr/selectableItemBackgroundBorderless"
    android:clickable="true" />

4
投票

当您使用android:background时,您将替换大部分样式以及带有空白颜色的按钮的外观和感觉。

更新:从AppCompat版本23.0.0开始,有一个新的Widget.AppCompat.Button.A彩色样式,它使用主题的colorButtonNormal表示禁用的颜色,colorAccent表示启用的颜色。

这允许您直接通过它将其应用于您的按钮

<Button
 ...
style="@style/Widget.AppCompat.Button.Colored" />

您可以在v21目录中使用drawable作为背景,例如:

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

这将确保您的背景颜色为?attr / colorPrimary,并使用默认的?attr / colorControlHighlight(如果您愿意,也可以在主题中设置)使用默认的波纹动画。

注意:您必须为小于v21创建自定义选择器:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/primaryPressed"            android:state_pressed="true"/>
<item android:drawable="@color/primaryFocused" android:state_focused="true"/>
<item android:drawable="@color/primary"/>
</selector>

4
投票

除了Sudheesh R.

将波纹效果/动画添加到带有角的按钮矩形形状的Android按钮

创建xml文件res / drawable / your_file_name.xml

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

    <item android:id="@android:id/background">
        <shape android:shape="rectangle">
            <gradient
                android:angle="90"
                android:endColor="@color/colorAccent"
                android:startColor="@color/colorPrimary"
                android:type="linear" />
            <corners android:radius="50dp" />
        </shape>
    </item>
</ripple>
© www.soinside.com 2019 - 2024. All rights reserved.