Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Animation before API 11

I've just found out found android.animation.ObjectAnimator was only introduced in Android API 11.

Is there any other way of animating objects on older android phones?

like image 491
ACarter Avatar asked Apr 22 '12 10:04

ACarter


1 Answers

You can use Jake Wharton's NineOldAndroids [1] which is a backport of the Honeycomb new Animation Framework for 2.x Android devices. It is very easy to use, as it mimics the same API you would use on 11+ devices.

[1] http://nineoldandroids.com/

like image 77
Venator85 Avatar answered Oct 20 '22 11:10

Venator85