Animation before API 11

2019-02-16 18:46发布

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?

2条回答
干净又极端
2楼-- · 2019-02-16 19:24

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/

查看更多
Viruses.
3楼-- · 2019-02-16 19:34

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

查看更多
登录 后发表回答