What is the difference between an Animator and an Animation?
http://stackoverflow.com/questions/28220613/what-is-the-difference-between-an-animator-and-an-animation
Animators on the other hand change the physical properties of the objects. This means that if you move a View to a new location, the touch coordinates will be mapped at the new location without any other intervention. Personally, I don‘t use Animations much anymore unless I‘m developing at API‘s 2.3 or less. Thankfully that‘s becoming less of an issue. There are also some old classes that still use Animations API especially when it comes to using xml resources such as the As a side note, the project NineOldAndroids was developed to mimic functionality of Animators but using Animations so you can make apps that work all the way to 1.6. |