码迷,mamicode.com
首页 > 其他好文 > 详细

属性动画PropertyAnimation

时间:2016-04-06 18:41:12      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:

//缩放属性动画。
public void scale(View view) {
    ObjectAnimator scale_anim = ObjectAnimator.ofFloat(imageview, "scaleX", 0.5f,2);
    scale_anim.setDuration(5000);
    scale_anim.setRepeatCount(0);
    ObjectAnimator scale_anim_y = ObjectAnimator.ofFloat(imageview, "scaleY", 0.5f,2);
    scale_anim_y.setDuration(5000);
    scale_anim_y.setRepeatCount(0);
    scale_anim_y.start();
    scale_anim.start();
}

 

属性动画PropertyAnimation

标签:

原文地址:http://www.cnblogs.com/anni-qianqian/p/5360367.html

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