Android动画(四)动画框架源码分析
本篇难度较大,慎入 也许可以先去看总结在来一起分析 从我们写的开始进入: fun click(view: View) { val textView = findViewById(R.id.tv) val animator = ObjectAnimator.ofFloat(textView,scale, 0f, 1f) animator.duration = 3000 animator.interpolator = LinearInterpolator() animator.start() } 首先第
下载地址
用户评论