What is the full-proof way of passing data with drag and drop?
In my situation I have two lists and i can drag element from one to another. So the list from which we drag already has data associated with it. From what I have searched the usual way is storing data by views setTag() and getTag() methods. This is also what I would do, but since both lists use view-holder pattern, the actual data would be stored in holder. And the holder would then be set as views tag. However I have also heard that you should never store data in views or in holder (im using view-holder pattern in list adapters).
So what would be the best way to pass data from one list to another?