Animation before API 11

android, animation

Solution

`ObjectAnimator` is indeed introduced in Android 3.0(API Level 11), it cannot be found on 2.3.6.

http://developer.android.com/reference/android/animation/ObjectAnimator.html

Problem

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?

Original source