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

相关推荐
行墨几秒前
Kotlin 主构造函数
android
前行的小黑炭3 分钟前
Android从传统的XML转到Compose的变化:mutableStateOf、MutableStateFlow;有的使用by有的使用by remember
android·kotlin
_一条咸鱼_7 分钟前
Android Compose 框架尺寸与密度深入剖析(五十五)
android
在狂风暴雨中奔跑19 分钟前
使用AI开发Android界面
android·人工智能
行墨21 分钟前
Kotlin 定义类与field关键
android
信徒_1 小时前
Mysql 在什么样的情况下会产生死锁?
android·数据库·mysql
大胡子的机器人2 小时前
安卓中app_process运行报错Aborted,怎么查看具体的报错日志
android
goto_w2 小时前
uniapp上使用webview与浏览器交互,支持三端(android、iOS、harmonyos next)
android·vue.js·ios·uni-app·harmonyos
QING6183 小时前
Kotlin Random.Default用法及代码示例
android·kotlin·源码阅读
QING6183 小时前
Kotlin Byte.inc用法及代码示例
android·kotlin·源码阅读