サポートライブラリを使用してリップルアニメーションを実現する方法


171

ボタンをクリックしたときにリップルアニメーションを追加しようとしています。以下のようにしましたが、minSdKVersionを21にする必要があります。

ripple.xml

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

デザインライブラリとの下位互換性を確保したいと考えています。

これはどのように行うことができますか?

回答:


380

基本的なリップル設定

  • ビュー内に含まれる波紋。
    android:background="?selectableItemBackground"

  • ビューの境界を越えて広がる波紋:
    android:background="?selectableItemBackgroundBorderless"

    見て、ここで解決するための?(attr)JavaコードでXML参照を。

サポートライブラリ

  • サポートライブラリを参照する代わりにを使用する?attr:(または?略記する)ため、API 7で使用できます。?android:attr

画像/背景のある波紋

  • 画像または背景とリップルを重ね合わせるには、またはで設定されたリップルViewでをラップするのが最も簡単な解決策です。FrameLayoutsetForeground()setBackground()

正直なところ、これを行わない方法はありません。


38
これは、21より前のバージョンにリップルのサポートを追加しません
AndroidDev

21
リップルのサポートは追加されない場合がありますが、このソリューションはうまく機能しません。これは実際に私が抱えていた特定の問題を解決しました。Lにリップルエフェクトを適用し、以前のバージョンのAndroidで単純な選択を行いたかった。
Dave Jensen

4
@ AndroidDev、@ Dave Jensen:実際?attr:には、?android:attr参照の代わりにv7サポートライブラリを使用します。これを使用すると、API 7への下位互換性が得られます。参照:developer.android.com/tools/support-library/features。 html#v7
Ben De La Haye

14
背景色も必要な場合はどうすればよいですか?
stanley santoso

9
波及効果は、API <21のためのものではありません。波紋は、マテリアルデザインのクリック効果です。Googleデザインチームの視点では、ロリポップ前のデバイスでは表示されません。pre-lolipopには独自のクリック効果があります(デフォルトは水色のカバー)。提示された答えは、システムのデフォルトのクリック効果を使用することを提案しています。クリック効果の色をカスタマイズする場合は、ドローアブルを作成して、リップルクリック効果の場合はres / drawable-v21に配置し(<ripple>ドローアブルを使用)、非描画の場合はres / drawableに配置する必要があります。リップルクリック効果(<selector>で通常はドローアブル)
nbtk 2015年

55

以前はこの問題をトピック外として締めくくることを投票しましたが、残念ながらまだサポートライブラリの一部ではない非常に優れた視覚効果であるため、実際に考えを変えました。それはおそらく将来のアップデートで現れるでしょうが、発表される時間枠はありません。

幸いなことに、すでに利用可能なカスタム実装はほとんどありません。

古いバージョンのAndroidと互換性のあるMaterlialをテーマにしたウィジェットセットを含みます。

これらのいずれかを試してみたり、他の「マテリアルウィジェット」などでグーグルしたりすることができます...


12
これはサポートライブラリの一部になりました。私の答えをご覧ください。
Ben De La Haye

ありがとう!私は2番目のlibを使用しましたが、最初のものが遅い電話では遅すぎました。
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);
    }
}

else if(clickListener!= null){clickListener.onClick(thisRippleView); }
Volodymyr Kulyk 2016

実装が簡単...プラグアンドプレイ:)
Ranjith Kumar

RecyclerViewの各ビューでこのクラスを使用するとClassCastExceptionが発生します。
Ali_Waris 2017年

1
@Ali_Warisサポートライブラリは最近の波紋を処理できますが、これを修正addRippleToViewするには、波紋効果を追加するために使用するのではなく、行う必要があります。むしろRecyclerViewaの各ビューを作成するRippleViewCreator
ニコラスタイラー

17

時々あなたはカスタム背景を持っています、その場合より良い解決策は使用です android:foreground="?selectableItemBackground"


2
はい、ただし23以上のAPIまたは21 APIのデバイスで機能しますが、CardViewまたはFrameLayoutでのみ機能します
Skullper

17

とても簡単です;-)

最初に、古いAPIバージョン用と最新バージョン用の2つのドローアブルファイルを作成する必要があります。もちろん!最新の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 2018年

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">
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.