Android ValueAnimator ImageView animate() rotation,Kotlin

Android ValueAnimator ImageView animate() rotation,Kotlin

Kotlin 复制代码
    private fun myAnim() {
        val mDuration = 450L

        var animatedValue: Float
        val valueAnimator = ValueAnimator.ofFloat(0f, 1f)
        valueAnimator.duration = mDuration
        valueAnimator.interpolator = LinearInterpolator()
        valueAnimator.addUpdateListener(object : ValueAnimator.AnimatorUpdateListener {
            override fun onAnimationUpdate(animation: ValueAnimator) {
                animatedValue = animation.animatedValue as Float
                mImageView?.animate()?.rotation(90 * animatedValue)
            }
        })
        valueAnimator.start()
    }

Android ValueAnimator属性动画ObjectAnimator使View颜色渐变,Kotlin_view动画 渐变-CSDN博客文章浏览阅读646次,点赞8次,收藏8次。Android ValueAnimator属性动画ObjectAnimator使View颜色渐变,Kotlin。_view动画 渐变https://blog.csdn.net/zhangphil/article/details/135255049https://blog.csdn.net/zhangphil/article/details/135255049

相关推荐
杉氧20 分钟前
从 Modifier 到 Flexbox:React Native 布局与样式设计哲学
android·前端·react native
Kapaseker31 分钟前
我常用的 5 个 Kotlin 优化小技巧
android·kotlin
恋猫de小郭1 小时前
Flutter 多窗口支持类型和 API 介绍
android·前端·flutter
张风捷特烈1 小时前
当 AI 遇见 Flutter | 打造 500+ Widget 专属Logo
android·前端·flutter
名剑走天下1 小时前
Kotlin_LiveData
开发语言·kotlin
mengge.cloud1 小时前
云计算&服务器基础小白教程
android·linux·运维·服务器·网络·云计算
天空之城--2 小时前
Android Flutter行业最新动态与实用参考(2026年8月第3周)
android·人工智能·flutter·ai编程
zh73144 小时前
typephp的编译核心phpx原理解析
android·java·开发语言
胖大师11 小时前
Android Audio-FW
android
kayyoo13 小时前
CoordinatorLayout解析(二): 结合CollapsingToolbarLayout实现Toolbar折叠效果
android