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

相关推荐
wellc5 小时前
MySQL Workbench菜单汉化为中文
android·数据库·mysql
CYY955 小时前
Android 打印 SO 库的异常日志
android
找藉口是失败者的习惯7 小时前
深入理解 Android 无障碍服务
android
summerkissyou19877 小时前
Android-SurfaceView-打开车机SurfaceFlinger和HWC的日志
android
Fate_I_C7 小时前
Android函数式编程代码规范文档
android·代码规范
安卓蓝牙Vincent7 小时前
Android BLE SDK 设计手册(一):一次参数改动,让我重新设计了整套架构
android·架构
angerdream7 小时前
Android手把手编写儿童手机远程监控App之广播开机自启动
android·android studio
su_ym81107 小时前
Android SELinux
android·selinux
阿巴斯甜8 小时前
Android中项目架构:
android
程序员陆业聪9 小时前
线上监控与防劣化:让启动优化成果不再回退 | Android启动优化系列(五·完结)
android