I got some text views and I want to make the buzz effect of MSN.
My plan is:
- take the view, let say 10dip to the left,
- take it back to its start position
- after that take it 10dip up
- then back
- down back
- left... and so on.
My point is, I have some sequence of movements that I want to set to one view and that needs to execute one after another.
How can I do that?
Use an AnimationSet:
You probably mean AnimatorSet (not AnimationSet). As written in documentation:
Animation which moves
view
by-100px
for700ms
and then disappears during300ms
:I have the beginnings of an sdk 15 compatible class that can be used to build complex animation chains hope it helps someone. You should be able to follow the design pattern to add your own methods. If you do please comment them here and I will update the answer, Cheers!