效果: 一直不停的顺时针旋转

废话不多说, 上图:

效果: 一直不停的顺时针旋转.gif
    动画xml文件

    
    
        
        
    


    java代码: 给imageView设置动画

    Animation circle_anim = AnimationUtils.loadAnimation(AnimACT.this, R.anim.anim_round_rotate);
    //设置匀速旋转,在xml文件中设置会出现卡顿
    LinearInterpolator interpolator = new LinearInterpolator();
    circle_anim.setInterpolator(interpolator);
    if (circle_anim != null) {
        //开始动画
        ivIcon.startAnimation(circle_anim);
    }

你可能感兴趣的:(效果: 一直不停的顺时针旋转)