前言
现在RecyclerVIEw的应用越来越广泛了,不同的应用场景需要其作出不同的改变。有时候我们可能需要实现侧滑删除的功能,比如知乎首页的侧滑删除,又或者长按Item进行拖动与其他Item进行位置的交换,但RecyclerVIEw没有提供现成的API供我们 *** 作,所幸SDK提供了itemtouchhelper这样一个工具类帮助我们快速实现以上功能。不多说别的,我们来介绍一下itemtouchhelper。
什么是itemtouchhelper
This is a utility class to add swipe to dismiss and drag & drop support to RecyclerVIEw.It works with a RecyclerVIEw and a Callback class,which configures what type of interactions are enabled and also receives events when user performs these actions.Depending on which functionality you support,you should overrIDe onMove(RecyclerVIEw,VIEwHolder,VIEwHolder) and / or onSwiped(VIEwHolder,int).
以上是官方文档的介绍,itemtouchhelper是一个工具类,可实现侧滑删除和拖拽移动,使用这个工具类需要RecyclerVIEw和Callback。同时根据需要重写onMove和onSwiped方法。接下来就来讲述itemtouchhelper的使用方法。
itemtouchhelper基本使用方法
step.1新建一个接口,让Adapter实现之
从解耦的角度考虑,我们需要一个接口来实现Adapter和itemtouchhelper之间涉及数据的 *** 作,因为itemtouchhelper在完成触摸的各种动画后,就要对Adapter的数据进行 *** 作,比如侧滑删除 *** 作,最后需要调用Adapter的notifyItemRemove()方法来移除该数据。因此我们可以把数据 *** 作的部分抽象成一个接口方法,让itemtouchhelper.Callback调用该方法即可。具体如下:
新建itemtouchhelperAdapter:
public interface itemtouchhelperAdapter { //数据交换 voID onItemmove(int fromposition,int toposition); //数据删除 voID onItemdissmiss(int position);}
让我们的Adapter实现该接口:
public class MyAdapter extends RecyclerVIEw.Adapter<RecyclerVIEw.VIEwHolder> implements itemtouchhelperAdapter { //数据 private List<String> mData; ... @OverrIDe public voID onItemmove(int fromposition,int toposition) { //交换位置 Collections.swap(mData,fromposition,toposition); notifyItemmoved(fromposition,toposition); } @OverrIDe public voID onItemdissmiss(int position) { //移除数据 mData.remove(position); notifyItemRemoved(position); }}
那么我们在itemtouchhelper.Callback内直接调用接口的方法即可。
step.2新建类继承自itemtouchhelper.Callback
从官方文档我们知道,使用itemtouchhelper需要一个Callback,该Callback是itemtouchhelper.Callback的子类,所以我们需要新建一个类比如SimpleitemtouchhelperCallback继承自itemtouchhelper.Callback。我们可以重写其数个方法来实现我们的需求。我们先来看看itemtouchhelper.Callback需要重写的几个常用的方法。
1、public int getMovementFlags(RecyclerVIEw,RecyclerVIEw.VIEwHolder):该方法用于返回可以滑动的方向,比如说允许从右到左侧滑,允许上下拖动等。我们一般使用makeMovementFlags(int,int)或makeFlag(int,int)来构造我们的返回值。
例如:要使RecyclerVIEw的Item可以上下拖动,同时允许从右到左侧滑,但不许允许从左到右的侧滑,我们可以这样写:
@OverrIDe public int getMovementFlags(RecyclerVIEw recyclerVIEw,RecyclerVIEw.VIEwHolder vIEwHolder) { int dragFlags = itemtouchhelper.UP | itemtouchhelper.DOWN; //允许上下的拖动 int swipeFlags = itemtouchhelper.left; //只允许从右向左侧滑 return makeMovementFlags(dragFlags,swipeFlags); }
2、public boolean onMove(RecyclerVIEw recyclerVIEw,RecyclerVIEw.VIEwHolder vIEwHolder,RecyclerVIEw.VIEwHolder target)
当用户拖动一个Item进行上下移动从旧的位置到新的位置的时候会调用该方法,在该方法内,我们可以调用Adapter的notifyItemmoved方法来交换两个VIEwHolder的位置,最后返回true,表示被拖动的VIEwHolder已经移动到了目的位置。所以,如果要实现拖动交换位置,可以重写该方法(前提是支持上下拖动):
@OverrIDe public boolean onMove(RecyclerVIEw recyclerVIEw,RecyclerVIEw.VIEwHolder target) { //onItemmove是接口方法 mAdapter.onItemmove(vIEwHolder.getAdapterposition(),target.getAdapterposition()); return true; }
3、public voID onSwiped(RecyclerVIEw.VIEwHolder vIEwHolder,int direction)
当用户左右滑动Item达到删除条件时,会调用该方法,一般手指触摸滑动的距离达到RecyclerVIEw宽度的一半时,再松开手指,此时该Item会继续向原先滑动方向滑过去并且调用onSwiped方法进行删除,否则会反向滑回原来的位置。在该方法内部我们可以这样写:
@OverrIDe public voID onSwiped(RecyclerVIEw.VIEwHolder vIEwHolder,int direction) { //onItemdissmiss是接口方法 mAdapter.onItemdissmiss(vIEwHolder.getAdapterposition()); }
如果在onSwiped方法内我们没有进行任何 *** 作,即不删除已经滑过去的Item,那么就会留下空白的地方,因为实际上该ItemVIEw还占据着该位置,只是移出了我们的可视范围内罢了。
4、public boolean isLongPressDragEnabled():该方法返回true时,表示支持长按拖动,即长按ItemVIEw后才可以拖动,我们遇到的场景一般也是这样的。默认是返回true。
5、public boolean boolean isItemVIEwSwipeEnabled():该方法返回true时,表示如果用户触摸并左右滑动了VIEw,那么可以执行滑动删除 *** 作,即可以调用到onSwiped()方法。默认是返回true。
6、public voID onSelectedChanged(RecyclerVIEw.VIEwHolder vIEwHolder,int actionState):从静止状态变为拖拽或者滑动的时候会回调该方法,参数actionState表示当前的状态。
7、public voID clearVIEw(RecyclerVIEw recyclerVIEw,VIEwHolder vIEwHolder):当用户 *** 作完毕某个item并且其动画也结束后会调用该方法,一般我们在该方法内恢复ItemVIEw的初始状态,防止由于复用而产生的显示错乱问题。
8、public voID onChildDraw(…):我们可以在这个方法内实现我们自定义的交互规则或者自定义的动画效果。
那么完整的SimpleitemtouchhelperCallback文件是这样的:
public class SimpleitemtouchhelperCallback extends itemtouchhelper.Callback{ private itemtouchhelperAdapter mAdapter; public SimpleitemtouchhelperCallback(itemtouchhelperAdapter adapter){ mAdapter = adapter; } @OverrIDe public int getMovementFlags(RecyclerVIEw recyclerVIEw,RecyclerVIEw.VIEwHolder vIEwHolder) { int dragFlags = itemtouchhelper.UP | itemtouchhelper.DOWN; int swipeFlags = itemtouchhelper.left; return makeMovementFlags(dragFlags,swipeFlags); } @OverrIDe public boolean isLongPressDragEnabled() { return true; } @OverrIDe public boolean isItemVIEwSwipeEnabled() { return true; } @OverrIDe public boolean onMove(RecyclerVIEw recyclerVIEw,RecyclerVIEw.VIEwHolder target) { mAdapter.onItemmove(vIEwHolder.getAdapterposition(),target.getAdapterposition()); return true; } @OverrIDe public voID onSwiped(RecyclerVIEw.VIEwHolder vIEwHolder,int direction) { mAdapter.onItemdissmiss(vIEwHolder.getAdapterposition()); }}
step.3为RecycleVIEw添加itemtouchhelper
上面我们修改了Adapter和新建了itemtouchhelper.Callback的子类,接下来我们要为RecyclerVIEw添加itemtouchhelper:
//先实例化Callback itemtouchhelper.Callback callback = new SimpleitemtouchhelperCallback(myAdapter); //用Callback构造itemtouchhelper itemtouchhelper touchHelper = new itemtouchhelper(callback); //调用itemtouchhelper的attachToRecyclerVIEw方法建立联系 touchHelper.attachToRecyclerVIEw(mRecyclerVIEw);
经过以上步骤,我们已经实现了Item的拖拽和侧滑删除功能了,看一下效果:
自定义侧滑动画
有时候我们对默认的动画效果可能不满意,需要自己实现想要的动画效果,itemtouchhelper.Callback提供的onChildDraw方法可以让我们很方便地实现想要的效果。以下带来一种自定义的实现效果,当做抛砖引玉,让大家熟悉自定义效果的运用。先来看看要实现的效果:
该效果是比较常见的,用户向左滑动Item的时候,一开始提示的是“左滑删除”,滑动到一定距离后,显示删除的图标,并且随着滑动距离的增加该图标不断变大,达到最大后用户松开手指,该Item被删除。
接下来我们来分析一下怎样实现以上的效果:
首先,要想左滑出现一个删除的方块,可以在linearLayout放一个这样的“方块”,让它与Item水平并排排列,以下是布局文件:
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" xmlns:app="http://schemas.androID.com/apk/res-auto" androID:layout_height="wrap_content" androID:layout_wIDth="match_parent" androID:orIEntation="horizontal"> <androID.support.v7.Widget.CardVIEw androID:layout_wIDth="match_parent" androID:layout_height="80dp" androID:background="#ffffff" androID:layout_marginleft="4dp" androID:layout_marginRight="4dp" androID:layout_marginBottom="4dp" app:cardCornerRadius="1dp" app:elevation="1dp" app:contentpadding="1dp"> <relativeLayout androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:background="#ffffff"> <TextVIEw androID:ID="@+ID/item" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:textSize="22sp" androID:padding="4dp" androID:layout_centerInParent="true"/> </relativeLayout> </androID.support.v7.Widget.CardVIEw> <FrameLayout androID:layout_wIDth="100dp" androID:layout_height="match_parent" androID:layout_marginRight="4dp" androID:layout_marginBottom="4dp" androID:background="#f33213"> <ImageVIEw androID:ID="@+ID/iv_img" androID:layout_wIDth="50dp" androID:layout_height="50dp" androID:layout_gravity="center" androID:src="@mipmap/ic_eye_72" androID:visibility="invisible"/> <TextVIEw androID:ID="@+ID/tv_text" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="左滑删除" androID:textSize="18sp" androID:textcolor="#ffffff" androID:layout_gravity="center"/> </FrameLayout></linearLayout>
布局文件修改后,我们尝试来滑动一下,发现后面的删除方块并不会出现,这是因为默认的滑动方式是setTranslationX(int),即是对整个VIEw的滑动,所以无论我们怎样滑动,都不会出现删除方块。因此,我们要改变一个种滑动方式,比如使用scrollTo(int,int),这种是对VIEw的内容的滑动,所以随着左滑,item会向左滑去,而位于右方的方块自然也就出现了。
接着,我们考虑该“删除眼睛”的图标是怎样从小变大的,这个实现也比较简单,只要根据滑动的距离对该ImageVIEw的LayoutParams.wIDth进行改变就行了,不过要注意限制大小,否则过大会造成图片的失真。当滑动距离等于RecyclerVIEw宽度的一半时,此时松开手会使Item删除,那么我们可以在该滑动距离达到该值时时“眼睛”变得最大,此时可以达到良好的交互效果,提示了用户无需继续滑动即可删除该Item了。
最后我们要考虑的是:在删除了Item或者没删除而滑回原来的位置后,我们要把所做的改变重置一下,否则,会由于RecyclerVIEw的复用而导致其他位置的VIEwHolder与当前的VIEwHolder所做的改变一样,即造成显示的错误。我们可以在clearVIEw()方法内重置改变,这样就能解决因复用而导致的显示问题了。
最后我们来看看SimpleitemtouchhelperCallback的代码:
public class SimpleitemtouchhelperCallback extends itemtouchhelper.Callback{ //省略上面的代码.... //限制ImageVIEw长度所能增加的最大值 private double ICON_MAX_SIZE = 50; //ImageVIEw的初始长宽 private int fixeDWIDth = 150; @OverrIDe public voID clearVIEw(RecyclerVIEw recyclerVIEw,RecyclerVIEw.VIEwHolder vIEwHolder) { super.clearVIEw(recyclerVIEw,vIEwHolder); //重置改变,防止由于复用而导致的显示问题 vIEwHolder.itemVIEw.setScrollX(0); ((MyAdapter.normalitem)vIEwHolder).tv.setText("左滑删除"); FrameLayout.LayoutParams params = (FrameLayout.LayoutParams) ((MyAdapter.normalitem) vIEwHolder).iv.getLayoutParams(); params.wIDth = 150; params.height = 150; ((MyAdapter.normalitem) vIEwHolder).iv.setLayoutParams(params); ((MyAdapter.normalitem) vIEwHolder).iv.setVisibility(VIEw.INVISIBLE); } @OverrIDe public voID onChildDraw(Canvas c,RecyclerVIEw recyclerVIEw,float dX,float dY,int actionState,boolean isCurrentlyActive) { //仅对侧滑状态下的效果做出改变 if (actionState ==itemtouchhelper.ACTION_STATE_SWIPE){ //如果dX小于等于删除方块的宽度,那么我们把该方块滑出来 if (Math.abs(dX) <= getSlIDelimitation(vIEwHolder)){ vIEwHolder.itemVIEw.scrollTo(-(int) dX,0); } //如果dX还未达到能删除的距离,此时慢慢增加“眼睛”的大小,增加的最大值为ICON_MAX_SIZE else if (Math.abs(dX) <= recyclerVIEw.getWIDth() / 2){ double distance = (recyclerVIEw.getWIDth() / 2 -getSlIDelimitation(vIEwHolder)); double factor = ICON_MAX_SIZE / distance; double diff = (Math.abs(dX) - getSlIDelimitation(vIEwHolder)) * factor; if (diff >= ICON_MAX_SIZE) diff = ICON_MAX_SIZE; ((MyAdapter.normalitem)vIEwHolder).tv.setText(""); //把文字去掉 ((MyAdapter.normalitem) vIEwHolder).iv.setVisibility(VIEw.VISIBLE); //显示眼睛 FrameLayout.LayoutParams params = (FrameLayout.LayoutParams) ((MyAdapter.normalitem) vIEwHolder).iv.getLayoutParams(); params.wIDth = (int) (fixWIDth + diff); params.height = (int) (fixWIDth + diff); ((MyAdapter.normalitem) vIEwHolder).iv.setLayoutParams(params); } }else { //拖拽状态下不做改变,需要调用父类的方法 super.onChildDraw(c,recyclerVIEw,vIEwHolder,dX,dY,actionState,isCurrentlyActive); } } /** * 获取删除方块的宽度 */ public int getSlIDelimitation(RecyclerVIEw.VIEwHolder vIEwHolder){ VIEwGroup vIEwGroup = (VIEwGroup) vIEwHolder.itemVIEw; return vIEwGroup.getChildAt(1).getLayoutParams().wIDth; }}
好了,到目前为止,自定义效果介绍完毕,读者可以根据需求来实现多样化的效果。
总结以上是内存溢出为你收集整理的RecyclerView进阶:使用ItemTouchHelper实现拖拽和侧滑删除效果全部内容,希望文章能够帮你解决RecyclerView进阶:使用ItemTouchHelper实现拖拽和侧滑删除效果所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)