我正在尝试Paint
在颜色之间为自定义视图中的对象设置动画。但是动画不工作。
ObjectAnimator colorFade = ObjectAnimator.ofObject(mCirclePaint, "color", new ArgbEvaluator(), getColor(), 0xff000000);
colorFade.setDuration(1500);
colorFade.start();
invalidate();
我以前设置过这样的油漆颜色:
mCirclePaint.setColor(Color.RED);
更新我不认为Handler
它是否对动画有影响。即使没有处理程序,我也无法为绘制对象设置动画。