listview实现拖动排序—DragSortListVie
简介
DragSortListView是github上一个开源项目,支持拖拽排序和左右滑动删除功能,继承自listView,使用其可以使:‘
- 在拖动时提供更平滑的列表滚动效果 ,不会对界面的已有元素造成视觉上的干扰。
- 提供了startDrag()和stopDrag()公共方法,也就是你可以在任意地方控制拖动。
- 每个item的高度可以不同。
如何实现
DragSortListView主要使用了三个以下元素来定义拖拽排序:
- 数据重排 ,拖动排序会重新改写list中的数据顺序,因为DragSortListView不知道你的数据具体如何组织,所以重新组织数据必须通过实现提供的监听接口来实现;
- 拖动开始和结束/startDrag()和stopDrag() 通过调用 startDrag() 和 stopDrag() 函数来启动或者停止拖动操作。其实一般拖动效果都是助手类DragSortController(提供了所有常用的 开始/停止/删除 拖拽操作功能)来完成;
- 浮动视图/floationg view ,floating view的外观和行为是由实现了SimpleFloatViewManager(自定义) 接口的类控制的。可以通过它将任何view展示出漂浮的效果;
API介绍
- DragSortListView.DropListener>>该接口监听上下拖动时,位置变化的监听器;
- DragSortListView.RemoveListener>>该接口监听左右拖动时,滑动成功删除数据的接口;
- FloatViewManager:是上下拖动时,出现的悬浮框控制 包括声明和销毁的控制;
- DragSortListView:设置拖动的开关;并设置回调的监听器,因为系统不知道我们数据操作的
具体业务; - DragSortController:该控制器实现了FloatViewManager,同时实现了OnTouchListener;
说明,大部分拖动所产生的操作都在Controller里面。删除操作的开关也是Controller;
同时,定义删除和拖拉的模式也在Controller里面。系统提供setDragHandleId()方法来设置操作的View。
主要步骤
布局
布局其实没什么特别的,就是普通的listview布局
item的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ff6347">
<TextView
android:id="@+id/dragsort_listview_item_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/dragsort_listview_item_layout"
android:ellipsize="end"
android:gravity="center|left"
android:lineSpacingExtra="5dp"
android:padding="15dp"
android:textColor="#FFFFFF"
android:textSize="14sp" />
<RelativeLayout
android:id="@+id/dragsort_listview_item_layout"
android:layout_width="40dp"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerInParent="true">
</RelativeLayout>
</RelativeLayout>
</LinearLayout>
主界面布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:dslv="http://schemas.android.com/apk/res-auto"
android:orientati