Lines Matching defs:DragShadowBuilder

3764      * {@link #startDragAndDrop(ClipData, DragShadowBuilder, Object, int)} is called
3810 * {@link #startDragAndDrop(ClipData, DragShadowBuilder, Object, int)} is called
20508 * for a DragShadowBuilder based on a View returns an image that has exactly the same
20520 * You pass a DragShadowBuilder object to the system when you start the drag. The system
20533 public static class DragShadowBuilder {
20542 public DragShadowBuilder(View view) {
20554 public DragShadowBuilder() {
20560 * {@link #View.DragShadowBuilder(View)}
20562 * {@link #View.DragShadowBuilder()}
20621 * @deprecated Use {@link #startDragAndDrop(ClipData, DragShadowBuilder, Object, int)
20624 public final boolean startDrag(ClipData data, DragShadowBuilder shadowBuilder,
20631 * {@link android.view.View.DragShadowBuilder} object to the system. The
20632 * system calls this object's {@link DragShadowBuilder#onProvideShadowMetrics(Point, Point)}
20634 * {@link DragShadowBuilder#onDrawShadow(Canvas)} to draw the drag shadow itself.
20646 * Your application can invoke {@link #startDragAndDrop(ClipData, DragShadowBuilder, Object,
20648 * the one used in {@link android.view.View.DragShadowBuilder}, nor does it need to be related
20653 * @param shadowBuilder A {@link android.view.View.DragShadowBuilder} object for building the
20679 public final boolean startDragAndDrop(ClipData data, DragShadowBuilder shadowBuilder,
20756 * {@link #startDragAndDrop(ClipData, DragShadowBuilder, Object, int) startDragAndDrop}
20783 * @param shadowBuilder A {@link android.view.View.DragShadowBuilder} object for building the
20786 public final void updateDragShadow(DragShadowBuilder shadowBuilder) {
20833 * {@link android.view.View#startDragAndDrop(ClipData,DragShadowBuilder,Object,int)