android - View Animations alternatives for API<11 -
this google api tutorial shows how animate views. uses methods available api level 11, such view.setalpha
now, using phone android 2.1 (api 7) can find many , many applications using same kind of animations (the card flip animation popular)
are there google libraries animations shown in tutorial work api prior 11? if not, other alternatives?
p.s aware of this question appearantly objectanimator , got unuseful anser accepted
easy animation such transform, rotate, move (which seems want) may made such classes as:
http://developer.android.com/reference/android/view/animation/animationutils.html
http://developer.android.com/reference/android/animation/animatorset.html
http://developer.android.com/reference/android/view/animation/animation.html
in brief have create animation resources (or classes) , run on views. after ending animation possibly have hide view visibility method.
check details - http://jmsliu.com/779/android-view-animation-example.html.
Comments
Post a Comment