RecyclervIEw现在基本已经替代ListvIEw了,RecyclerVIEw也越来越好用了 当我们有实现条目的拖拽排序和侧滑删除时 可以直接时候RecyclervIEw提供的API就可以直接实现了
先贴上主要代码
private voID initveiw() { ArrayList<String> items = new ArrayList<>(Arrays.asList("itme1","item2","itme3","item4","item5","item6","item7","item8","itme9","item10","itme11","item12","item13","item14","item15","item16")); recyclerVIEw.setLayoutManager(new linearlayoutmanager(this,linearlayoutmanager.VERTICAL,false)); SimpleAdapter adapter = new SimpleAdapter(items); recyclerVIEw.setAdapter(adapter); itemtouchhelper helper = new itemtouchhelper(new MyItemtouchCallback(adapter)); helper.attachToRecyclerVIEw(recyclerVIEw);}public class MyItemtouchCallback extends itemtouchhelper.Callback{ private SimpleAdapter adapter; public MyItemtouchCallback(SimpleAdapter adapter) { this.adapter = adapter; } @OverrIDe public int getMovementFlags(RecyclerVIEw recyclerVIEw,RecyclerVIEw.VIEwHolder vIEwHolder) { int dragFlag; int swipeFlag; RecyclerVIEw.LayoutManager manager = recyclerVIEw.getLayoutManager(); if (manager instanceof GrIDLayoutManager){ dragFlag = itemtouchhelper.DOWN | itemtouchhelper.UP | itemtouchhelper.left | itemtouchhelper.RIGHT; swipeFlag = 0; }else{ dragFlag = itemtouchhelper.DOWN | itemtouchhelper.UP; swipeFlag = itemtouchhelper.END | itemtouchhelper.START; } return makeMovementFlags(dragFlag,swipeFlag); } @OverrIDe public boolean onMove(RecyclerVIEw recyclerVIEw,RecyclerVIEw.VIEwHolder vIEwHolder,RecyclerVIEw.VIEwHolder target) { int fromposition = vIEwHolder.getAdapterposition(); int toposition = target.getAdapterposition(); if (fromposition < toposition ){ for (int i = fromposition ;i<toposition ;i++){ Collections.swap(adapter.getDataList(),i,i+1); } }else{ for (int i= fromposition; i>toposition; i--){ Collections.swap(adapter.getDataList(),i-1); } } recyclerVIEw.getAdapter().notifyItemmoved(fromposition,toposition); return true; } @OverrIDe public voID onSwiped(RecyclerVIEw.VIEwHolder vIEwHolder,int direction) { int position = vIEwHolder.getAdapterposition(); if (direction == itemtouchhelper.END | direction==itemtouchhelper.START){ adapter.getDataList().remove(position); adapter.notifyItemRemoved(position); } } @OverrIDe public voID onSelectedChanged(RecyclerVIEw.VIEwHolder vIEwHolder,int actionState) { super.onSelectedChanged(vIEwHolder,actionState); if (actionState==itemtouchhelper.ACTION_STATE_DRAG){ vIEwHolder.itemVIEw.setBackgroundcolor(color.BLUE); } } @OverrIDe public voID clearVIEw(RecyclerVIEw recyclerVIEw,RecyclerVIEw.VIEwHolder vIEwHolder) { super.clearVIEw(recyclerVIEw,vIEwHolder); vIEwHolder.itemVIEw.setBackgroundcolor(0); }}
步骤:
创建 itemtouchhelper 对象时候,需要我们传入一个实现了 itemtouchhelper.Callback 接口的对象。而排序和删除的逻辑都封装在了这个 itemtouchhelper.Callback 的对象里面了。
private voID initveiw() { ArrayList<String> items = new ArrayList<>(Arrays.asList("itme1",false)); SimpleAdapter adapter = new SimpleAdapter(items); recyclerVIEw.setAdapter(adapter); itemtouchhelper helper = new itemtouchhelper(new MyItemtouchCallback(adapter)); helper.attachToRecyclerVIEw(recyclerVIEw);}
实现itemtouchhelper.Callback 接口后有三个方法需要重写:
getMovementFlags(RecyclerVIEw recyclerVIEw,RecyclerVIEw.VIEwHolder vIEwHolder) :设置滑动类型的标记。需要设置两种类型的 flag ,即 dragFlags 和 swipeFlags ,分别代表着拖拽标记和滑动标记。最后需要调用 makeMovementFlags(dragFlags,
swipeFlags)方法来合成返回。
onMove(RecyclerVIEw recyclerVIEw,RecyclerVIEw.VIEwHolder target) :当用户拖拽列表某个 item 时会回调。很明显,拖拽排序的代码应该在这个方法中实现。
onSwiped(RecyclerVIEw.VIEwHolder vIEwHolder,int direction) :当用户滑动列表某个 item 时会回调。所以侧滑删除的代码应该在这个方法中实现。
下面是重写的几个方法:
第一个,getMovementFlags方法
@OverrIDepublic int getMovementFlags(RecyclerVIEw recyclerVIEw,RecyclerVIEw.VIEwHolder vIEwHolder) { int dragFlag; int swipeFlag; RecyclerVIEw.LayoutManager manager = recyclerVIEw.getLayoutManager(); if (manager instanceof GrIDLayoutManager){ dragFlag = itemtouchhelper.DOWN | itemtouchhelper.UP | itemtouchhelper.left | itemtouchhelper.RIGHT; swipeFlag = 0; }else{ dragFlag = itemtouchhelper.DOWN | itemtouchhelper.UP; swipeFlag = itemtouchhelper.END | itemtouchhelper.START; } return makeMovementFlags(dragFlag,swipeFlag);}
这个方法里面根据LayoutManager分了两种情况,根据自己的情况去分
在GrIDLayoutManager中只能上下左右拖拽但是不能侧滑删除,所以swipFlag = 0;swipeFlag的值itemtouchhelper.END是右滑删除,itemtouchhelper.START是左滑删除
最后调用makeMovementFlags方法合成返回
第二个,onMove方法
@OverrIDepublic boolean onMove(RecyclerVIEw recyclerVIEw,RecyclerVIEw.VIEwHolder target) { int fromposition = vIEwHolder.getAdapterposition(); int toposition = target.getAdapterposition(); if (fromposition < toposition ){ for (int i = fromposition ;i<toposition ;i++){ Collections.swap(adapter.getDataList(),i+1); } }else{ for (int i= fromposition; i>toposition; i--){ Collections.swap(adapter.getDataList(),i-1); } } recyclerVIEw.getAdapter().notifyItemmoved(fromposition,toposition); return true;}
这个方法是用户在拖拽 item 的时候调用。所以关于列表排序的代码应该写在这里。方法参数中的 vIEwHolder 代表的是用户当前拖拽的 item ,而 target 代表的是被用户拖拽所覆盖的那个 item 。所以在 onMove(RecyclerVIEw recyclerVIEw,RecyclerVIEw.VIEwHolder target) 方法中的逻辑就是把 fromposition 至 toposition 为止改变它们的位置。
第三个,onSwiped方法
@OverrIDepublic voID onSwiped(RecyclerVIEw.VIEwHolder vIEwHolder,int direction) { int position = vIEwHolder.getAdapterposition(); if (direction == itemtouchhelper.END | direction==itemtouchhelper.START){ adapter.getDataList().remove(position); adapter.notifyItemRemoved(position); }}
这个方法是在用户侧滑的时候调用的 ,在里面对adapter的数据进行删除就可以了
最后两个方法
@OverrIDe public voID onSelectedChanged(RecyclerVIEw.VIEwHolder vIEwHolder,vIEwHolder); vIEwHolder.itemVIEw.setBackgroundcolor(0); }}
就是优化的方法,第一个是选择条目改变状态,第二个是手指抬起之后恢复条目状态
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。
总结以上是内存溢出为你收集整理的Android recyclerview实现拖拽排序和侧滑删除全部内容,希望文章能够帮你解决Android recyclerview实现拖拽排序和侧滑删除所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)