3

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?

Sachin K
  • 339
  • 4
  • 14

1 Answers1

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