背景颜色变化(每秒稍有变化)

时间:2015-04-28 08:02:02

标签: android performance android-layout android-activity

任何人都可以告诉我如何实现每秒稍微改变的背景,如the picture所示。

1 个答案:

答案 0 :(得分:2)

这可能会帮助你

ValueAnimator colorAnim = ObjectAnimator.ofInt(**myView**, "backgroundColor", Color.RED, Color.BLUE);

            colorAnim.setDuration(3000);
            colorAnim.setEvaluator(new ArgbEvaluator());
            colorAnim.setRepeatCount(ValueAnimator.INFINITE);
            colorAnim.setRepeatMode(ValueAnimator.REVERSE);
            colorAnim.start();

myView是您要应用动画的视图