欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

android属性动画使用

程序员文章站 2022-05-03 23:50:09
...

 

ObjectAnimator objectAnimator = ObjectAnimator.ofFloat(mImageView,"translationY",
                0,view.getWidth());
        objectAnimator.setDuration(3000);
//        objectAnimator.start();

        ObjectAnimator objectAnimator2 = ObjectAnimator.ofFloat(mImageView,"translationX",
                0,view.getWidth());
        objectAnimator2.setDuration(3000);
//        objectAnimator.start();

        AnimatorSet set = new AnimatorSet();
        set.playTogether(objectAnimator,objectAnimator2);
        set.start();

 

相关标签: 安卓基础学习