码迷,mamicode.com
首页 > 移动开发 > 详细

thinking for android's animation

时间:2016-03-07 01:31:35      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:

*Property Animation
ObjectAnimator anim=ObjectAnimator.ofFloat((textView, "asdfasdf", 0F, 1F);
anim.setDuration(2000);
anim.addUpdateListener(new AnimatorUpdateListener() {
//当ObjectAnimator需要更新TextView的属性时
public void onAnimationUpdate(ValueAnimator animation) {
Float value=(Float)animation.getAnimatedValue();
textView.setAlpha(value);
textView.setScaleX(value);
textView.setScaleY(value);
}
});
anim.start();

*Frame Animation 帧动画
1>构建AnimationDrawable对象。
anim=new AnimationDrawable();
2>向AnimationDrawable对象中添加帧
anim.addFrame()
3>调用view.setBackground(anim)
4>anim.start()

thinking for android's animation

标签:

原文地址:http://www.cnblogs.com/gentspy/p/5249133.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!