Does someone know about Android animations? I want to create something like following:
- I have a big image in the center of my device screen;
- this image becomes small (by animation) and goes to the corner of my device screen;
Its something like in this bellow sequence:

Any hints would be very appreciated! Thanks in advance!
Use
ViewPropertyAnimator, with methods likescaleXBy()andtranslateYBy(). You get aViewPropertyAnimatorby callinganimate()on aView, on API Level 11+. If you are supporting older devices, NineOldAndroids offers a near-workalike backport.You might also wish to read: