Android TextView Number Animation

3.2k Views Asked by At

I have a textview with numbers in it. If the number was changed, i want to animate this. But this shouldn't be a fade in and fade out effect. I want to animate every single number with a vertical flip effect. Is that possible?

2

There are 2 best solutions below

1
On

Animation in Android is used by Views.

So, TextView will make animation at whole.

If you want to make animation for each single number then create a lot of TextView as number digits (programmatically) and move the digits from the original TextView to each TextView. Then make animation to all these TextViews.

If the original TextView has the content (301), then you should create three TextView and set the '3' as text to the first TextView and set '0' to the second , and so on.

0
On

If you are looking for odometer like effect, there are two tutorials and code samples I know of that can help you, BUT you will need to do a custom view to achieve this effect:

http://kevindion.com/2010/12/android-odometer-ui-tutorial-part-2/
https://github.com/Vinayrraj/Android-FlipDigitView

This is the video of the final animation of second tutorial:
https://www.youtube.com/watch?v=d6-M2nN2Gzg&feature=youtu.be