标签:
在创建objectAnimator对象的时候直接new的,这样会导致在设置ofFloat的时候报错空指针,因为target为空
在创建objectanimator对象的时候使用
oa = ObjectAnimator.ofFloat(ivLogo, "rotateY", 0, 60, 120); // 这样创建objectanimator对象就不会target null
ObjectAnimator的target null
原文地址:http://www.cnblogs.com/xxss0903/p/5845252.html