public interface DraggableManager
View.| Modifier and Type | Method and Description |
|---|---|
boolean |
isDraggable(View view,
int position,
float x,
float y)
Returns whether the
View at given position can be dragged. |
boolean isDraggable(View view, int position, float x, float y)
View at given position can be dragged.view - the item View, as returned by Adapter.getView(int, android.view.View, android.view.ViewGroup) for given position.position - the position of the itemx - the x coordinate of the touch within given View.y - the y coordinate of the touch within given View.true if the View should be dragged, false otherwise.