I need to know how i can implement Drag & Drop in Android for the Gingerbread version as i know Gingerbread doesnt support that.

What i have coded: a ViewGroup class to hold dynamic added childs, each child should after a long click be able to get moved through a finger tap/move. To solve this, i have a OnLongClickListener attached to each View's child and my ViewGroup have implemented both the methods onTouch() to get the down/up/move events and the method onLongClick() to response to the long click on each child.

Now my problem is as follows: i long tap a child, i can move it and can end the action through the "ACTION_UP" event. but, i cant long tap this child again - is there a way or library that can handle that?

I think, i dont need a realy D&D library/function because i only will order some icons in this ViewGroup - each child gets added to the ViewGroup via code, so i dont have a realy DropTarget i think.

Thanks for help :)

link|improve this question
i fixed the problem as follows: 1.) let each child have a new instance of OnLongClickListener, this prevents the parent to response to the LongClick event. 2.) return the correct values (true/false) in onTouch() event – Andreas Bf Jan 11 at 8:17
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.