标签:color sla tran style object anim mode ini inf
ObjectAnimator oa=ObjectAnimator.ofFloat(iv,"translationX",0,10.0f,20.0f,30.0f);
oa.setDuration(4000);
oa.setRepeatCount(ObjectAnimator.INFINITE);
oa.setRepeatMode(ObjectAnimator.REVERSE);
oa.start();
标签:color sla tran style object anim mode ini inf
原文地址:http://www.cnblogs.com/liuyinghai87/p/7149376.html