我有一个自定义视图,我绘制一个弧,表示事件的进度,如两个日期之间的传递时间。它看起来像这样:
我想随着时间的推移改变弧形冷却器和红色之间弧线的笔触颜色。
我试过以下但是它不起作用:
remainingTimeProgress = (DonutProgress) rootView.findViewById(R.id.remainingTimeIndicator);
Integer colorFrom = getResources().getColor(R.color.donut_finished_color);
Integer colorTo = getResources().getColor(R.color.Red);
ValueAnimator colorAnimation = ValueAnimator.ofObject(new ArgbEvaluator(), colorFrom, colorTo);
colorAnimation.setDuration(currentTimeLength);
long passedTime = Calendar.getInstance().getTime().getTime() - currentDate.getTime();
colorAnimation.setCurrentPlayTime(passedTime);
colorAnimation.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(final ValueAnimator animator) {
activity.runOnUiThread(new Runnable() {
@Override
public void run() {
Integer colorValue = (Integer) animator.getAnimatedValue();
remainingTimeProgress.setFinishedStrokeColor(colorValue);
}
});
}
});
colorAnimation.start();
以下是我的自定义查看代码:http://pastebin.com/ERyLiczg
我该怎么做?
更新
我已经尝试了一些动画时间的硬编码值,如:
colorAnimation.setDuration(15000);
colorAnimation.setCurrentPlayTime(0);
它已经奏效了。但是当我将播放时间动态设置为通过时间时,它不会将颜色更改为当时的颜色。
你知道这是什么问题吗?
更新
启动后设置当前播放时间解决了问题。
colorAnimation.start();
colorAnimation.setCurrentPlayTime(passedTime);
答案 0 :(得分:0)
启动后调用设置当前播放时间:
colorAnimation.start();
colorAnimation.setCurrentPlayTime(passedTime);