[android-developers] How to implement UI for re-ordering a list?

2010-02-18 Thread Luke Meyer
I have an Android app where users can add items to a ListView, and I'd like them to be able to re-order the items in the list however they want (as opposed to just offering them different sort orders). It's easy enough to add a position setting for the items (they come from the DB) but what kind

Re: [android-developers] How to implement UI for re-ordering a list?

2010-02-18 Thread TreKing
On Thu, Feb 18, 2010 at 10:08 AM, Luke Meyer luke.rt.me...@gmail.comwrote: The best I can think of is to use a long click and context menu to move up or move down. Any better ideas? This is what I do and it works well enough for small lists. I would like to do drag-n-drop at some point but