INNER CODE UNIT · Java
mobileViewStartY
cymcsg/UltimateRecyclerView · UltimateRecyclerView/ultimaterecyclerview/src/main/java/com/marshalchen/ultimaterecyclerview/DragDropTouchListener.java:65
private int mobileViewStartY = -1;
private int mobileViewCurrentPos = -1;
private int activePointerId;
private boolean dragging;
private boolean enabled = true;
public DragDropTouchListener(RecyclerView recyclerView, Activity activity) {
this.recyclerView = recyclerView;
this.activity = activity;
this.displayMetrics = recyclerView.getResources().getDisplayMetrics();
this.scrollAmount = (int) (50 / displayMetrics.density);
this.dragHighlight = recyclerView.getResources().getDrawable(R.drawable.drag_frame);
}
public DragDropTouchListener(RecyclerView recyclerView, Activity activity, Drawable dragHighlight) {
this(recyclerView, activity);