|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectandroid.support.v4.widget.ViewDragHelper.Callback
public abstract static class ViewDragHelper.Callback
A Callback is used as a communication channel with the ViewDragHelper back to the
parent view using it. on*
methods are invoked on siginficant events and several
accessor methods are expected to provide the ViewDragHelper with more information
about the state of the parent view upon request. The callback also makes decisions
governing the range and draggability of child views.
Constructor Summary | |
---|---|
ViewDragHelper.Callback()
|
Method Summary | |
---|---|
int |
clampViewPositionHorizontal(android.view.View child,
int left,
int dx)
Restrict the motion of the dragged child view along the horizontal axis. |
int |
clampViewPositionVertical(android.view.View child,
int top,
int dy)
Restrict the motion of the dragged child view along the vertical axis. |
int |
getOrderedChildIndex(int index)
Called to determine the Z-order of child views. |
int |
getViewHorizontalDragRange(android.view.View child)
Return the magnitude of a draggable child view's horizontal range of motion in pixels. |
int |
getViewVerticalDragRange(android.view.View child)
Return the magnitude of a draggable child view's vertical range of motion in pixels. |
void |
onEdgeDragStarted(int edgeFlags,
int pointerId)
Called when the user has started a deliberate drag away from one of the subscribed edges in the parent view while no child view is currently captured. |
boolean |
onEdgeLock(int edgeFlags)
Called when the given edge may become locked. |
void |
onEdgeTouched(int edgeFlags,
int pointerId)
Called when one of the subscribed edges in the parent view has been touched by the user while no child view is currently captured. |
void |
onViewCaptured(android.view.View capturedChild,
int activePointerId)
Called when a child view is captured for dragging or settling. |
void |
onViewDragStateChanged(int state)
Called when the drag state changes. |
void |
onViewPositionChanged(android.view.View changedView,
int left,
int top,
int dx,
int dy)
Called when the captured view's position changes as the result of a drag or settle. |
void |
onViewReleased(android.view.View releasedChild,
float xvel,
float yvel)
Called when the child view is no longer being actively dragged. |
abstract boolean |
tryCaptureView(android.view.View child,
int pointerId)
Called when the user's input indicates that they want to capture the given child view with the pointer indicated by pointerId. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ViewDragHelper.Callback()
Method Detail |
---|
public void onViewDragStateChanged(int state)
STATE_*
constants
for more information.
state
- The new drag stateViewDragHelper.STATE_IDLE
,
ViewDragHelper.STATE_DRAGGING
,
ViewDragHelper.STATE_SETTLING
public void onViewPositionChanged(android.view.View changedView, int left, int top, int dx, int dy)
changedView
- View whose position changedleft
- New X coordinate of the left edge of the viewtop
- New Y coordinate of the top edge of the viewdx
- Change in X position from the last calldy
- Change in Y position from the last callpublic void onViewCaptured(android.view.View capturedChild, int activePointerId)
ViewDragHelper.INVALID_POINTER
the capture is programmatic instead of
pointer-initiated.
capturedChild
- Child view that was capturedactivePointerId
- Pointer id tracking the child capturepublic void onViewReleased(android.view.View releasedChild, float xvel, float yvel)
Calling code may decide to fling or otherwise release the view to let it
settle into place. It should do so using ViewDragHelper.settleCapturedViewAt(int, int)
or ViewDragHelper.flingCapturedView(int, int, int, int)
. If the Callback invokes
one of these methods, the ViewDragHelper will enter ViewDragHelper.STATE_SETTLING
and the view capture will not fully end until it comes to a complete stop.
If neither of these methods is invoked before onViewReleased
returns,
the view will stop in place and the ViewDragHelper will return to
ViewDragHelper.STATE_IDLE
.
releasedChild
- The captured child view now being releasedxvel
- X velocity of the pointer as it left the screen in pixels per second.yvel
- Y velocity of the pointer as it left the screen in pixels per second.public void onEdgeTouched(int edgeFlags, int pointerId)
edgeFlags
- A combination of edge flags describing the edge(s) currently touchedpointerId
- ID of the pointer touching the described edge(s)ViewDragHelper.EDGE_LEFT
,
ViewDragHelper.EDGE_TOP
,
ViewDragHelper.EDGE_RIGHT
,
ViewDragHelper.EDGE_BOTTOM
public boolean onEdgeLock(int edgeFlags)
onEdgeTouched(int, int)
was called. This method should return true to lock this edge or false to leave it
unlocked. The default behavior is to leave edges unlocked.
edgeFlags
- A combination of edge flags describing the edge(s) locked
public void onEdgeDragStarted(int edgeFlags, int pointerId)
edgeFlags
- A combination of edge flags describing the edge(s) draggedpointerId
- ID of the pointer touching the described edge(s)ViewDragHelper.EDGE_LEFT
,
ViewDragHelper.EDGE_TOP
,
ViewDragHelper.EDGE_RIGHT
,
ViewDragHelper.EDGE_BOTTOM
public int getOrderedChildIndex(int index)
index
- the ordered position to query for
index
public int getViewHorizontalDragRange(android.view.View child)
child
- Child view to check
public int getViewVerticalDragRange(android.view.View child)
child
- Child view to check
public abstract boolean tryCaptureView(android.view.View child, int pointerId)
ViewDragHelper may call this method multiple times for the same view even if the view is already captured; this indicates that a new pointer is trying to take control of the view.
If this method returns true, a call to onViewCaptured(android.view.View, int)
will follow if the capture is successful.
child
- Child the user is attempting to capturepointerId
- ID of the pointer attempting the capture
public int clampViewPositionHorizontal(android.view.View child, int left, int dx)
child
- Child view being draggedleft
- Attempted motion along the X axisdx
- Proposed change in position for left
public int clampViewPositionVertical(android.view.View child, int top, int dy)
child
- Child view being draggedtop
- Attempted motion along the Y axisdy
- Proposed change in position for top
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |