如何使用支持库实现波纹动画?


171

我试图在单击按钮时添加波纹动画。我在下面确实喜欢,但是它要求minSdKVersion到21。

涟漪图

<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="?android:colorControlHighlight">
    <item>
        <shape android:shape="rectangle">
            <solid android:color="?android:colorAccent" />
        </shape>
    </item>
</ripple>

纽扣

<com.devspark.robototextview.widget.RobotoButton
    android:id="@+id/loginButton"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/ripple"
    android:text="@string/login_button" />

我想使其与设计库向后兼容。

如何做到这一点?

Answers:


380

基本纹波设置

  • 视图中包含的涟漪图。
    android:background="?selectableItemBackground"

  • 超出视图范围的波纹:
    android:background="?selectableItemBackgroundBorderless"

    在这里看看如何?(attr)用Java代码解析xml引用。

支持库

  • 使用?attr:(或?简称)代替?android:attr引用支持库,因此可以返回API 7。

带有图像/背景的涟漪

  • 要获得图像或背景并覆盖波纹,最简单的解决方案是将包裹起来,ViewFrameLayoutsetForeground()或设置波纹setBackground()

老实说,否则没有干净的方法可以做到这一点。


38
这并没有之前的版本21.添加波纹支持
AndroidDev

21
它可能不会增加纹波支持,但此解决方案的性能会下降。这实际上解决了我遇到的特定问题。我想要对L产生涟漪效应,并希望在先前版本的android上进行简单选择。
Dave Jensen

4
@ AndroidDev,@ Dave Jensen:实际上,使用v7支持库?attr:而不是?android:attr引用,假设您使用了v7支持库,则可以向后兼容API7 。请参阅:developer.android.com/tools/support-library/features。 html#v7
Ben De La Haye 2015年

14
如果我也想要背景色怎么办?
斯坦利·桑托索2015年

9
波纹效果并不意味着API <21。波纹是材料设计的点击效果。Google Design Team的观点未在棒棒糖之前的设备上显示。棒棒糖具有自己的点击效果(默认为浅蓝色封面)。提供的答案建议使用系统的默认点击效果。如果要自定义点击效果的颜色,则需要制作一个可绘制对象,并将其放置在res / drawable-v21上以产生涟漪点击效果(使用<ripple>可绘制对象),并放置在res / drawable上以用于非涟漪点击效果(通常使用<selector>可绘制)
nbtk

55

我以前投票决定关闭此问题为离题,但实际上我改变了主意,因为这是一种非常不错的视觉效果,但不幸的是,它还不是支持库的一部分。它很可能会在将来的更新中显示,但没有宣布时间表。

幸运的是,已有一些自定义实现:

包括与旧版Android兼容的Materlial主题小部件集:

因此,您可以尝试其中之一或使用google搜索其他“材料小部件”等等。


12
现在这是支持库的一部分,请参阅我的答案。
Ben De La Haye 2015年

谢谢!我使用了第二个库,第一个在慢速电话中速度太慢。
Ferran Maylinch 2015年

27

我做了一个简单的类来制作波纹按钮,但最终我根本不需要它,所以它不是最好的,但是这里是:

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.os.Handler;
import android.support.annotation.NonNull;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.widget.Button;

public class RippleView extends Button
{
    private float duration = 250;

    private float speed = 1;
    private float radius = 0;
    private Paint paint = new Paint();
    private float endRadius = 0;
    private float rippleX = 0;
    private float rippleY = 0;
    private int width = 0;
    private int height = 0;
    private OnClickListener clickListener = null;
    private Handler handler;
    private int touchAction;
    private RippleView thisRippleView = this;

    public RippleView(Context context)
    {
        this(context, null, 0);
    }

    public RippleView(Context context, AttributeSet attrs)
    {
        this(context, attrs, 0);
    }

    public RippleView(Context context, AttributeSet attrs, int defStyleAttr)
    {
        super(context, attrs, defStyleAttr);
        init();
    }

    private void init()
    {
        if (isInEditMode())
            return;

        handler = new Handler();
        paint.setStyle(Paint.Style.FILL);
        paint.setColor(Color.WHITE);
        paint.setAntiAlias(true);
    }

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh)
    {
        super.onSizeChanged(w, h, oldw, oldh);
        width = w;
        height = h;
    }

    @Override
    protected void onDraw(@NonNull Canvas canvas)
    {
        super.onDraw(canvas);

        if(radius > 0 && radius < endRadius)
        {
            canvas.drawCircle(rippleX, rippleY, radius, paint);
            if(touchAction == MotionEvent.ACTION_UP)
                invalidate();
        }
    }

    @Override
    public boolean onTouchEvent(@NonNull MotionEvent event)
    {
        rippleX = event.getX();
        rippleY = event.getY();

        switch(event.getAction())
        {
            case MotionEvent.ACTION_UP:
            {
                getParent().requestDisallowInterceptTouchEvent(false);
                touchAction = MotionEvent.ACTION_UP;

                radius = 1;
                endRadius = Math.max(Math.max(Math.max(width - rippleX, rippleX), rippleY), height - rippleY);
                speed = endRadius / duration * 10;
                handler.postDelayed(new Runnable()
                {
                    @Override
                    public void run()
                    {
                        if(radius < endRadius)
                        {
                            radius += speed;
                            paint.setAlpha(90 - (int) (radius / endRadius * 90));
                            handler.postDelayed(this, 1);
                        }
                        else
                        {
                            clickListener.onClick(thisRippleView);
                        }
                    }
                }, 10);
                invalidate();
                break;
            }
            case MotionEvent.ACTION_CANCEL:
            {
                getParent().requestDisallowInterceptTouchEvent(false);
                touchAction = MotionEvent.ACTION_CANCEL;
                radius = 0;
                invalidate();
                break;
            }
            case MotionEvent.ACTION_DOWN:
            {
                getParent().requestDisallowInterceptTouchEvent(true);
                touchAction = MotionEvent.ACTION_UP;
                endRadius = Math.max(Math.max(Math.max(width - rippleX, rippleX), rippleY), height - rippleY);
                paint.setAlpha(90);
                radius = endRadius/4;
                invalidate();
                return true;
            }
            case MotionEvent.ACTION_MOVE:
            {
                if(rippleX < 0 || rippleX > width || rippleY < 0 || rippleY > height)
                {
                    getParent().requestDisallowInterceptTouchEvent(false);
                    touchAction = MotionEvent.ACTION_CANCEL;
                    radius = 0;
                    invalidate();
                    break;
                }
                else
                {
                    touchAction = MotionEvent.ACTION_MOVE;
                    invalidate();
                    return true;
                }
            }
        }

        return false;
    }

    @Override
    public void setOnClickListener(OnClickListener l)
    {
        clickListener = l;
    }
}

编辑

由于许多人正在寻找这样的东西,所以我开设了一个可以使其他视图产生连锁反应的类:

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.os.Handler;
import android.support.annotation.NonNull;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;

public class RippleViewCreator extends FrameLayout
{
    private float duration = 150;
    private int frameRate = 15;

    private float speed = 1;
    private float radius = 0;
    private Paint paint = new Paint();
    private float endRadius = 0;
    private float rippleX = 0;
    private float rippleY = 0;
    private int width = 0;
    private int height = 0;
    private Handler handler = new Handler();
    private int touchAction;

    public RippleViewCreator(Context context)
    {
        this(context, null, 0);
    }

    public RippleViewCreator(Context context, AttributeSet attrs)
    {
        this(context, attrs, 0);
    }

    public RippleViewCreator(Context context, AttributeSet attrs, int defStyleAttr)
    {
        super(context, attrs, defStyleAttr);
        init();
    }

    private void init()
    {
        if (isInEditMode())
            return;

        paint.setStyle(Paint.Style.FILL);
        paint.setColor(getResources().getColor(R.color.control_highlight_color));
        paint.setAntiAlias(true);

        setWillNotDraw(true);
        setDrawingCacheEnabled(true);
        setClickable(true);
    }

    public static void addRippleToView(View v)
    {
        ViewGroup parent = (ViewGroup)v.getParent();
        int index = -1;
        if(parent != null)
        {
            index = parent.indexOfChild(v);
            parent.removeView(v);
        }
        RippleViewCreator rippleViewCreator = new RippleViewCreator(v.getContext());
        rippleViewCreator.setLayoutParams(v.getLayoutParams());
        if(index == -1)
            parent.addView(rippleViewCreator, index);
        else
            parent.addView(rippleViewCreator);
        rippleViewCreator.addView(v);
    }

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh)
    {
        super.onSizeChanged(w, h, oldw, oldh);
        width = w;
        height = h;
    }

    @Override
    protected void dispatchDraw(@NonNull Canvas canvas)
    {
        super.dispatchDraw(canvas);

        if(radius > 0 && radius < endRadius)
        {
            canvas.drawCircle(rippleX, rippleY, radius, paint);
            if(touchAction == MotionEvent.ACTION_UP)
                invalidate();
        }
    }

    @Override
    public boolean onInterceptTouchEvent(MotionEvent event)
    {
        return true;
    }

    @Override
    public boolean onTouchEvent(@NonNull MotionEvent event)
    {
        rippleX = event.getX();
        rippleY = event.getY();

        touchAction = event.getAction();
        switch(event.getAction())
        {
            case MotionEvent.ACTION_UP:
            {
                getParent().requestDisallowInterceptTouchEvent(false);

                radius = 1;
                endRadius = Math.max(Math.max(Math.max(width - rippleX, rippleX), rippleY), height - rippleY);
                speed = endRadius / duration * frameRate;
                handler.postDelayed(new Runnable()
                {
                    @Override
                    public void run()
                    {
                        if(radius < endRadius)
                        {
                            radius += speed;
                            paint.setAlpha(90 - (int) (radius / endRadius * 90));
                            handler.postDelayed(this, frameRate);
                        }
                        else if(getChildAt(0) != null)
                        {
                            getChildAt(0).performClick();
                        }
                    }
                }, frameRate);
                break;
            }
            case MotionEvent.ACTION_CANCEL:
            {
                getParent().requestDisallowInterceptTouchEvent(false);
                break;
            }
            case MotionEvent.ACTION_DOWN:
            {
                getParent().requestDisallowInterceptTouchEvent(true);
                endRadius = Math.max(Math.max(Math.max(width - rippleX, rippleX), rippleY), height - rippleY);
                paint.setAlpha(90);
                radius = endRadius/3;
                invalidate();
                return true;
            }
            case MotionEvent.ACTION_MOVE:
            {
                if(rippleX < 0 || rippleX > width || rippleY < 0 || rippleY > height)
                {
                    getParent().requestDisallowInterceptTouchEvent(false);
                    touchAction = MotionEvent.ACTION_CANCEL;
                    break;
                }
                else
                {
                    invalidate();
                    return true;
                }
            }
        }
        invalidate();
        return false;
    }

    @Override
    public final void addView(@NonNull View child, int index, ViewGroup.LayoutParams params)
    {
        //limit one view
        if (getChildCount() > 0)
        {
            throw new IllegalStateException(this.getClass().toString()+" can only have one child.");
        }
        super.addView(child, index, params);
    }
}

否则,如果(clickListener!= null){clickListener.onClick(thisRippleView); }
Volodymyr Kulyk

易于实现...即插即用:)
Ranjith Kumar

如果我在RecyclerView的每个视图上使用此类,则会得到ClassCastException。
Ali_Waris

1
@Ali_Waris这些天,支持库可以处理涟漪,但是要解决此问题,您要做的就是,而不是addRippleToView用来增加涟漪效果。而是使在每个视图RecyclerView一个RippleViewCreator
尼古拉斯·泰勒

17

有时您具有自定义背景,在这种情况下,使用更好的解决方案 android:foreground="?selectableItemBackground"


2
是的,但它适用于API> = 23或具有21 API的设备,但仅适用于CardView或FrameLayout
Skullper

17

这很简单;-)

首先,您必须创建两个可绘制文件,一个用于旧api版本,另一个用于最新版本,当然!如果您为最新的api版本创建可绘制文件,则android studio建议您自动创建旧文件。最后将此可绘制对象设置为背景视图。

适用于新api版本(res / drawable-v21 / ripple.xml)的示例可绘制对象:

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

适用于旧版api的示例可绘制样本(res / drawable / ripple.xml)

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="@color/colorPrimary" />
    <corners android:radius="@dimen/round_corner" />
</shape>

有关波纹可绘制的更多信息,请访问:https : //developer.android.com/reference/android/graphics/drawable/RippleDrawable.html


1
真的非常简单!
Aditya S.

这个解决方案绝对应该得到更多支持!谢谢。
JerabekJakub '18 -10-30

0

有时会在任何布局或组件上使用此行。

 android:background="?attr/selectableItemBackground"

像。

 <RelativeLayout
                android:id="@+id/relative_ticket_checkin"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:background="?attr/selectableItemBackground">
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.