0
votes
1answer
78 views

Droid: How to reorder a linearlayouts contents programmatically?

I have a scrollview with a list of buttons. I want to have the instructions at the beginning of this list when the app is first used, but then move the instructions to the end off screen after the ...
0
votes
0answers
105 views

how to implement cwac-touchlist for a tree-map type data?

I'm a newbie for Android. I'm trying to reorder a set of data by dragNdrop the item. My data is a TreeMap<float, MyClass>, each item has a identical order which is its key in the map. When I ...
2
votes
1answer
576 views

Drag-and-drop action bar tabs (Android 4.0 ICS)?

Is there anyway to allow users to drag-and-drop the navigation tabs in the ActionBar to reorder them on Android 4.0 ICS? I don't mean tabs in a deprecated TabHost, I mean the tabs that you add to the ...
2
votes
2answers
254 views

How to make listview reorder itself when item is inserted

I have a list view in which I can insert items(the items are inserted in the database). The problem is that when I insert an item, it shows at the bottom of the list. How can I make it go to the right ...
5
votes
1answer
2k views

How can you manually reorder a ListView in Android?

I have a ListView in Android that needs to have the ability to be manually reordered. An example would be within Android's Music Player application, when you can change the order of tracks in a ...