ObjectAnimator的target null
Posted 乌拉小考
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ObjectAnimator的target null相关的知识,希望对你有一定的参考价值。
在创建objectAnimator对象的时候直接new的,这样会导致在设置ofFloat的时候报错空指针,因为target为空
在创建objectanimator对象的时候使用
oa = ObjectAnimator.ofFloat(ivLogo, "rotateY", 0, 60, 120); // 这样创建objectanimator对象就不会target null
以上是关于ObjectAnimator的target null的主要内容,如果未能解决你的问题,请参考以下文章
Android ObjectAnimator 与 ViewPropertyAnimator
objectanimator和valueanimator有啥区别