22.02.2011 14:49, Jeremy Cowgar пишет:
Can anyone point me in the right direction to make this type of animation work correctly?
Any type of transition will require at least two views - one to hold the old value, one for the new one.
With this in mind, use a ViewFlipper with two identical child views to represent the two values. Always push the new value into the child that's not visible, then animate from the visible/old view to the invisible/new one.
If you decide to do it this way, take note of this: http://stackoverflow.com/questions/4674796/crash-when-rotating-activity-using-viewflipper -- Kostya -- Kostya Vasilyev -- http://kmansoft.wordpress.com -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

