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

安卓在后台中写组合动画

时间:2015-08-11 18:26:18      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

1 Animation am = new TranslateAnimation(0, wmax / 2 - left, 0,hmax / 2 - top);
2 am.setDuration(1000);
3 Animation am1 = new AlphaAnimation(1, 0);
4 am1.setDuration(600);
5 AnimationSet as = new AnimationSet(true);
6 as.setFillAfter(true);
7 as.addAnimation(am);
8 as.addAnimation(am1);
9 img.startAnimation(as);

 

安卓在后台中写组合动画

标签:

原文地址:http://www.cnblogs.com/zxbk/p/4721627.html

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