Any way to animate new elements in a GridView being added?

Posted by Ben L. on Stack Overflow See other posts from Stack Overflow or by Ben L.
Published on 2010-05-25T23:20:28Z Indexed on 2010/05/25 23:31 UTC
Read the original article Hit count: 221

Filed under:
|

My app polls a server every 15 seconds to see if there are any new items to display, then downloads the new items and disposes of the old items so that there are always exactly 100 items in the GridView. Unfortunately, this process can be confusing to the user if they see a page of images change without knowing where the items went.

My idea is that there could be some kind of animation (such as the new items being inserted at the top and pushing the older ones down the list) to show what action is happening. Unfortunately, I have no clue how to make this animation happen.

Is my idea even possible? How would I accomplish this?

© Stack Overflow or respective owner

Related posts about android

Related posts about android-sdk