美文网首页
属性动画

属性动画

作者: 小慧sir | 来源:发表于2019-07-13 15:01 被阅读0次
    //    <alpha/>
    //    <translate/>
    //    <scale/>
    //    <rotate/>
            ObjectAnimator alpha = ObjectAnimator.ofFloat(mImageDd, "alpha", 0, 1);
            ObjectAnimator translationY = ObjectAnimator.ofFloat(mImageDd, "TranslationY", 0, 360);
            ObjectAnimator scaleY = ObjectAnimator.ofFloat(mImageDd, "scaleY", 0, 1);
            ObjectAnimator rotation = ObjectAnimator.ofFloat(mImageDd, "Rotation", 0, 360);
            AnimatorSet animatorSet = new AnimatorSet();
            animatorSet.setDuration(5000);
            animatorSet.play(alpha).with(translationY).with(scaleY).with(rotation);
            animatorSet.start();
    

    相关文章

      网友评论

          本文标题:属性动画

          本文链接:https://www.haomeiwen.com/subject/hlfmkctx.html