Noman
Noman

Reputation: 4109

Drag Image on Touch

I want to drag an image on the screen.
how can i do this?
In my case, the image is simply download from the URL and placed on an activity.
I just want to drag this.

Thanks in advance!!

Upvotes: 5

Views: 933

Answers (2)

Praveenkumar
Praveenkumar

Reputation: 24476

You can do that with this -

@Override
public void onDraw(Canvas canvas) 
{
    canvas.drawColor(Color.BLACK);
    canvas.drawBitmap(mBitmap, 10, 10, null);
}

And follow this tutorial. It can help you in step-by-step basis.

Upvotes: 1

mayur rahatekar
mayur rahatekar

Reputation: 4460

please download the default android drag and drop source code

please check this code

Upvotes: 1

Related Questions