Ejemplo n.º 1
0
 private void handleScroll(RecyclerView recyclerView) {
   if (scrollState != RecyclerView.SCROLL_STATE_IDLE) {
     return;
   }
   DragInfo lastDragInfo = dragManager.getLastDragInfo();
   if (lastDragInfo != null) {
     handleDragScroll(recyclerView, lastDragInfo);
   }
 }