5

Faced the problem of letting the dragshaddow (created by a DragShadowBuilder) react on something, while dragging is happening.

Do someone know how it supposed to be done?

Marcin Gil
  • 68,043
  • 8
  • 59
  • 60
Skip
  • 6,240
  • 11
  • 67
  • 117

1 Answers1

6

Here's my complete code for custom drag shadow builder (gist for custom drag shadow).

However, as others stated there is no possibility to modify drag shadow using native functionality introduced in API-11.

package com.marcingil.dragshadow;

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Point;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.view.View;

public class ImageDragShadowBuilder extends View.DragShadowBuilder {
    private Drawable shadow;

    private ImageDragShadowBuilder() {
        super();
    }

    public static View.DragShadowBuilder fromResource(Context context, int drawableId) {
        ImageDragShadowBuilder builder = new ImageDragShadowBuilder();

        builder.shadow = context.getResources().getDrawable(drawableId);
        if (builder.shadow == null) {
            throw new NullPointerException("Drawable from id is null");
        }

        builder.shadow.setBounds(0, 0, builder.shadow.getMinimumWidth(), builder.shadow.getMinimumHeight());

        return builder;
    }

    public static View.DragShadowBuilder fromBitmap(Context context, Bitmap bmp) {
        if (bmp == null) {
            throw new IllegalArgumentException("Bitmap cannot be null");
        }

        ImageDragShadowBuilder builder = new ImageDragShadowBuilder();

        builder.shadow = new BitmapDrawable(context.getResources(), bmp);
        builder.shadow.setBounds(0, 0, builder.shadow.getMinimumWidth(), builder.shadow.getMinimumHeight());

        return builder;
    }

    @Override
    public void onDrawShadow(Canvas canvas) {
        shadow.draw(canvas);
    }

    @Override
    public void onProvideShadowMetrics(Point shadowSize, Point shadowTouchPoint) {
        shadowSize.x = shadow.getMinimumWidth();
        shadowSize.y = shadow.getMinimumHeight();

        shadowTouchPoint.x = (int)(shadowSize.x / 2);
        shadowTouchPoint.y = (int)(shadowSize.y / 2);
    }
}
Marcin Gil
  • 68,043
  • 8
  • 59
  • 60
  • Marcin, what if my custom shadow is not a bitmap, but a layout? I have an unanswered question (small bounty provided) regarding such scenario: http://stackoverflow.com/questions/22274384/how-to-create-a-custom-drag-shadow – Konrad Morawski Mar 12 '14 at 13:20