Reputation: 4109
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
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
Reputation: 4460
please download the default android drag and drop source code
Upvotes: 1