Reordering of ListView
items is quite easy on iOS. Now I would like to do the same thing on Android but it seems to be quite cumbersome: Item reorder is not supported by the SDK and one has to implement it on its own or use use a third-party implementation.
I found several articles and posts dealing with this question but they were all quite old (2-3 years). For example the bauerca DragSortListView is referenced on many places, but the project is no longer maintained. Since my app should support Android 4+ only I wanted to ask if meanwhile there is a better to do this.
Of course drag 'n drop reorder would be the most convenient way for the user but I am open for any solution that works (e.g. using a context menu with up/down)
What is the best way to provide item reorder in Android 4+?
Is there something like a default/standard way of doing this?