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

View体系之属性动画

时间:2019-04-26 21:04:05      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:透明   before   err   col   lis   font   add   list   for   

(内容省略了valueAnimator和PropertyValueHolder使用)

属性动画的使用的主要方式是AnimatorSet和ObjectAnimator配合使用.ObjectAnimator控制一个对象和一个属性,多个ObjectAnimator组合到AnimatorSet可以实现丰富的动画效果.

 

一.ObjectAnimator单独使用

ObjectAnimator mobjectAnimator=ObjectAnimator.ofFloat(view,"translationX",200);
                mobjectAnimator.setDuration(300);
                mobjectAnimator.start();

除了设置时长以外,还可以设置插值器.其可以常用的直接使用的属性动画属性值有:

translationX,translationY//平移

rotation,rotationX,rotationX//旋转

PrivotX,PrivotY//支点

alpha//透明度

x,y//View最终位置

 

二.监听动画过程

mobjectAnimator.addListener(new Animator.AnimatorListener() {
                    @Override
                    public void onAnimationStart(Animator animation) {
                    }

                    @Override
                    public void onAnimationEnd(Animator animation) {

                    }

                    @Override
                    public void onAnimationCancel(Animator animation) {

                    }

                    @Override
                    public void onAnimationRepeat(Animator animation) {

                    }
                });

 

三.组合动画

AnimatorSet使用play(Animator anim)传入动画

并且通过以下方法插入新动画:

  after(Animator anim)

  after(long delay)//延迟指定毫秒后执行

  with(Animator anim)

  before(Animator anim)

 

                ObjectAnimator Animator1 = ObjectAnimator.ofFloat(view, "translationX", 200);
                ObjectAnimator Animator2 = ObjectAnimator.ofFloat(view, "ScaleX", 1.0f, 2.0f);
                ObjectAnimator Animator3 = ObjectAnimator.ofFloat(view, "rotationX", 0.0f, 90.0f);
                AnimatorSet set=new AnimatorSet();
                set.setDuration(2000);
                set.play(Animator1).with(Animator2).after(Animator3);
                set.start();

 

View体系之属性动画

标签:透明   before   err   col   lis   font   add   list   for   

原文地址:https://www.cnblogs.com/adressian/p/10776348.html

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