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 :)