admin
2021-07-06 abce02c7a61820f5d580f87364d542e817be429c
1
2
3
4
5
6
7
8
9
package com.wpc.library.recyclerviewhelper;
 
/**
 * Item移动后 触发
 * Created by YoKeyword on 15/12/28.
 */
public interface OnItemMoveListener {
    void onItemMove(int fromPosition, int toPosition, int direction);
}