美文网首页安卓开发
安卓属性动画设置无限循环播放

安卓属性动画设置无限循环播放

作者: 蓝不蓝编程 | 来源:发表于2019-09-27 15:27 被阅读0次

    完整代码

        private fun rotate(srcView: View) {
            val animateTime = 5000L
            val animation = RotateAnimation(0f, 360f,
                    Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f)
            animation.fillAfter = true
            animation.repeatCount = Animation.INFINITE
            animation.duration = animateTime
            animation.interpolator = LinearInterpolator()
            srcView.startAnimation(animation)
        }
    

    关键代码

    animation.repeatCount = Animation.INFINITE
    

    相关文章

      网友评论

        本文标题:安卓属性动画设置无限循环播放

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