I saw the Android app "Mobisle Notes Free" implement a really cool ListView, where a row gets moved to the bottom if its checkbox is checked. It's not just a simple refresh, but an actual animation where you see the row travel to the bottom. Does anyone know how to implement this?
Asked
Active
Viewed 1,416 times
3
-
Follow the link http://stackoverflow.com/q/3928193/1054930 which defines the listview animation beautifully – jyotiprakash Feb 27 '12 at 12:15
-
You can refer the following link: http://stackoverflow.com/q/3928193/1054930 – jyotiprakash Feb 27 '12 at 12:16
1 Answers
0
You could check out the Android example application “ApiDemos.” It provides you with some source code that can show you how to do widget based animation.
Edit:
I believe it is classes Animation1, Animation2, and Animation3.

user432209
- 20,007
- 10
- 56
- 75
-
Do you know which example that would be? Saw something around ListViews, but couldn't find the one where the list items animate up and down the list – Sachin K Oct 08 '10 at 14:42
-
Couldn't find those. The only animations I could see in the API are those that move or resize an object, but not the moving or rearranging of ListView items. – Sachin K Feb 07 '11 at 22:52