Hi,
I want to create a List where the user can rearrange the order of the list over a long click event and drop the entry to the right position.
For example:
I have the following list:
Item 1
Item 2
Item 3
Item 4
Item 5
Item 6
The user will press long on Item 3 and then move it to Position 1 with his finger so the new order will be:
Item 3
Item 1
Item 2
Item 4
Item 5
Item 6
So I already figured out that it is easier to rearrange a ScrollView than a List View. But I couldn't find an example of the Drag N Drop event. Is there an example with something similar?
Thanks for your help!
I want to create a List where the user can rearrange the order of the list over a long click event and drop the entry to the right position.
For example:
I have the following list:
Item 1
Item 2
Item 3
Item 4
Item 5
Item 6
The user will press long on Item 3 and then move it to Position 1 with his finger so the new order will be:
Item 3
Item 1
Item 2
Item 4
Item 5
Item 6
So I already figured out that it is easier to rearrange a ScrollView than a List View. But I couldn't find an example of the Drag N Drop event. Is there an example with something similar?
Thanks for your help!