回弹效果的RecyclerView仅支持线性的水平和竖直

回弹效果的RecyclerView仅支持线性的水平和竖直

废话不多少直接上代码:

一、Activity

package com.ahtelit.zbv.vphandler;

import android.content.Context;
import android.content.res.TypedArray;
import android.support.annotation.Nullable;
import android.support.v7.widget.RecyclerView;
import android.util.AttributeSet;
import android.view.MotionEvent;

/**
 * Created by Administrator on 2018/6/6.
 * qzx
 * <p>
 * RecyclerView---水平排布
 * 具有顶部和底部可延伸一段距离,松开回弹的效果
 */

public class BounceRecyclerView extends RecyclerView {

    private int oritation;

    public int getOritation() {
        return oritation;
    }

    /**
     * 只能设置0和1
     * <br/><br/>
     * 0表示RecylerView是竖直排布
     * <br/><br/>
     * 1表示RecylerView是水平排布
     * <br/><br/>
     * 否则默认为0---竖直排布
     */
    public void setOritation(int oritation) {
        if (oritation != 0 && oritation != 1) {
            oritation = 0;
        }
        this.oritation = oritation;
    }

    public BounceRecyclerView(Context context) {
        this(context, null);
    }

    public BounceRecyclerView(Context context, @Nullable AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public BounceRecyclerView(Context context, @Nullable AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        paddingTop = getPaddingTop();
        paddingBottom = getPaddingBottom();
        paddingLeft = getPaddingLeft();
        paddingRight = getPaddingRight();

        TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.BounceRecyclerView, defStyle, 0);
        //enum中的value只能为int类型
        oritation = typedArray.getInt(R.styleable.BounceRecyclerView_oritation, 0);
        typedArray.recycle();
    }


    private float downTouch;
    //因为Item设置了点击监听导致RecyclerView收不到ACTION_DOWN的触摸事件
    private boolean firstTouch = true;
    private static final int MOVE_VERTIFY = 10;
    //可以延伸到屏幕的四分之一
    private static final int DEFAULT_DEVIDE = 4;

    //recyclerView_thumbnail的padding
    private int paddingTop;
    private int paddingBottom;
    private int paddingLeft;
    private int paddingRight;

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        switch (event.getAction()) {
            case MotionEvent.ACTION_DOWN:
//                downY = event.getY();
                    Log.d("zbv","downY="+downY);
                break;
            case MotionEvent.ACTION_MOVE:
                //这样写是因为无法监听到down事件所以第一次move事件的坐标作为down

                if (firstTouch) {
                    //消除第一次downX和moveX不一致
                    if (oritation == 0) {
                        downTouch = event.getY();
                    } else if (oritation == 1) {
                        downTouch = event.getX();
                    }
                    firstTouch = false;
                    return false;
                }
                float moveTouch = 0;
                if (oritation == 0) {
                    moveTouch = event.getY();
                    if (!canScrollVertically(-1)) {
                        if ((moveTouch - downTouch) >= MOVE_VERTIFY) {
                            int deltY = (int) (moveTouch - downTouch) / DEFAULT_DEVIDE;
                            setPadding(getPaddingLeft(), getPaddingTop() + deltY, getPaddingRight(),
                                    getPaddingBottom());
                        } else if ((moveTouch - downTouch) <= -MOVE_VERTIFY) {
                            setPadding(getPaddingLeft(), paddingTop, getPaddingRight(), paddingBottom);
                        }
                    } else if (!canScrollVertically(1)) {
                        if ((downTouch - moveTouch) >= MOVE_VERTIFY) {
                            int deltY = (int) (downTouch - moveTouch) / DEFAULT_DEVIDE;
                            setPadding(getPaddingLeft(), getPaddingTop(), getPaddingRight(),
                                    getPaddingBottom() + deltY);
                        } else if ((downTouch - moveTouch) <= -MOVE_VERTIFY) {
                            setPadding(getPaddingLeft(), paddingTop, getPaddingRight(), paddingBottom);
                        }
                    } else {
                        setPadding(getPaddingLeft(), paddingTop, getPaddingRight(), paddingBottom);
                    }
                } else if (oritation == 1) {
                    moveTouch = event.getX();
                    if (!canScrollHorizontally(-1)) {
                        if ((moveTouch - downTouch) >= MOVE_VERTIFY) {
                            int deltY = (int) (moveTouch - downTouch) / DEFAULT_DEVIDE;
                            setPadding(getPaddingLeft() + deltY, getPaddingTop(), getPaddingRight(),
                                    getPaddingBottom());
                        } else if ((moveTouch - downTouch) <= -MOVE_VERTIFY) {
                            setPadding(getPaddingLeft(), paddingTop, getPaddingRight(), paddingBottom);
                        }
                    } else if (!canScrollHorizontally(1)) {
                        if ((downTouch - moveTouch) >= MOVE_VERTIFY) {
                            int deltY = (int) (downTouch - moveTouch) / DEFAULT_DEVIDE;
                            setPadding(getPaddingLeft(), getPaddingTop(), getPaddingRight() + deltY,
                                    getPaddingBottom());
                        } else if ((downTouch - moveTouch) <= -MOVE_VERTIFY) {
                            setPadding(getPaddingLeft(), paddingTop, getPaddingRight(), paddingBottom);
                        }
                    } else {
                        setPadding(getPaddingLeft(), paddingTop, getPaddingRight(), paddingBottom);
                    }
                }

                //因为Visible都是可见的所以下面注释的三行判断是行不通的
                //rv_adapter.getHolderSparseArray().get(0).pptImageView.getVisibility() == View.VISIBLE
                //rv_adapter.getHolderSparseArray().get(rv_adapter.getHolderSparseArray().size() - 1).footIV != null &&
                //rv_adapter.getHolderSparseArray().get(rv_adapter.getHolderSparseArray().size() - 1).footIV.getVisibility() == View.VISIBLE
                //---------------
                //linearLayoutManager.findFirstVisibleItemPosition() == 0
                //linearLayoutManager.findLastVisibleItemPosition() == (linearLayoutManager.getItemCount() - 1)
                //!recyclerView_thumbnail.canScrollVertically(-1)
                //!recyclerView_thumbnail.canScrollVertically(1)
                //---------------


                //防止在既不是顶部也不是底部时的闪烁
                downTouch = moveTouch;
                break;
            case MotionEvent.ACTION_CANCEL:
            case MotionEvent.ACTION_UP:
                if (oritation == 0) {
                    setPadding(getPaddingLeft(), paddingTop, getPaddingRight(), paddingBottom);
                } else if (oritation == 1) {
                    setPadding(paddingLeft, getPaddingTop(), paddingRight, getPaddingBottom());
                }
                firstTouch = true;
                break;
        }
        return super.onTouchEvent(event);
    }
}

二、attrs.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <!--可回弹RecyclerView的自定义属性-->
    <declare-styleable name="BounceRecyclerView">
        <attr name="oritation">
            <enum name="vertical" value="0"/>
            <enum name="horizontal" value="1"/>
        </attr>
    </declare-styleable>
</resources>

三、xml使用

xmlns:zbv=”http://schemas.android.com/apk/res-auto”
vertical—>竖直value=0;horizontal—>水平value=1

<com.ahtelit.zbv.vphandler.BounceRecyclerView
        zbv:oritation="horizontal"
        android:paddingTop="7dp"
        android:paddingBottom="7dp"
        android:background="#cccccc"
        android:id="@+id/show_bottom_rv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"></com.ahtelit.zbv.vphandler.BounceRecyclerView>

最后,best wishes for you!

  • 1
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值