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!!

link|improve this question

28% accept rate
feedback

3 Answers

please download the default android drag and drop source code

please check this code

link|improve this answer
Thanks Mayur... I try this :) – Noman Dec 13 '11 at 11:34
feedback

https://github.com/MikeOrtiz/TouchImageView Check this

link|improve this answer
Thanks man.. i will see this :) – Noman Dec 13 '11 at 11:42
feedback

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.

link|improve this answer
Thanks mate.. i will see this :) – Noman Dec 13 '11 at 11:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.