java.lang.Object | |
↳ | android.view.View.DragShadowBuilder |
Creates an image that the system displays during the drag and drop
operation. This is called a "drag shadow". The default implementation
for a DragShadowBuilder based on a View returns an image that has exactly the same
appearance as the given View. The default also positions the center of the drag shadow
directly under the touch point. If no View is provided (the constructor with no parameters
is used), and onProvideShadowMetrics()
and
onDrawShadow()
are not overriden, then the
default is an invisible drag shadow.
You are not required to use the View you provide to the constructor as the basis of the
drag shadow. The onDrawShadow()
method allows you to draw
anything you want as the drag shadow.
You pass a DragShadowBuilder object to the system when you start the drag. The system
calls onProvideShadowMetrics()
to get the
size and position of the drag shadow. It uses this data to construct a
Canvas
object, then it calls onDrawShadow()
so that your application can draw the shadow image in the Canvas.
For a guide to implementing drag and drop features, read the Drag and Drop developer guide.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Constructs a shadow image builder based on a View.
| |||||||||||
Construct a shadow builder object with no associated View.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the View object that had been passed to the
View.DragShadowBuilder(View)
constructor. | |||||||||||
Draws the shadow image.
| |||||||||||
Provides the metrics for the shadow image.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Constructs a shadow image builder based on a View. By default, the resulting drag shadow will have the same appearance and dimensions as the View, with the touch point over the center of the View.
view | A View. Any View in scope can be used. |
---|
Construct a shadow builder object with no associated View. This
constructor variant is only useful when the onProvideShadowMetrics(Point, Point)
and onDrawShadow(Canvas)
methods are also overridden in order
to supply the drag shadow's dimensions and appearance without
reference to any View object. If they are not overridden, then the result is an
invisible drag shadow.
Returns the View object that had been passed to the
View.DragShadowBuilder(View)
constructor. If that View parameter was null
or if the
View.DragShadowBuilder()
constructor was used to instantiate the builder object, this method will return
null.
Draws the shadow image. The system creates the Canvas
object
based on the dimensions it received from the
onProvideShadowMetrics(Point, Point)
callback.
canvas | A Canvas object in which to draw the shadow image.
|
---|
Provides the metrics for the shadow image. These include the dimensions of the shadow image, and the point within that shadow that should be centered under the touch location while dragging.
The default implementation sets the dimensions of the shadow to be the same as the dimensions of the View itself and centers the shadow under the touch point.
shadowSize | A Point containing the width and height
of the shadow image. Your application must set x to the
desired width and must set y to the desired height of the
image. |
---|---|
shadowTouchPoint | A Point for the position within the
shadow image that should be underneath the touch point during the drag and drop
operation. Your application must set x to the
X coordinate and y to the Y coordinate of this position.
|