From 6e27f5856a9096a475039966106aec6546e6e277 Mon Sep 17 00:00:00 2001 From: Chet Haase Date: Mon, 10 Jan 2011 16:48:48 -0800 Subject: [PATCH] Rename RGBEvaluator to ArgbEvaluator Change-Id: I43cf6c9824b012424de1ef2a340ee9dde20af4a7 --- .../src/com/example/android/apis/animation/BouncingBalls.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/ApiDemos/src/com/example/android/apis/animation/BouncingBalls.java b/samples/ApiDemos/src/com/example/android/apis/animation/BouncingBalls.java index ca22550f6..de28da326 100644 --- a/samples/ApiDemos/src/com/example/android/apis/animation/BouncingBalls.java +++ b/samples/ApiDemos/src/com/example/android/apis/animation/BouncingBalls.java @@ -69,7 +69,7 @@ public class BouncingBalls extends Activity { // every frame of the animation. ValueAnimator colorAnim = ObjectAnimator.ofInt(this, "backgroundColor", RED, BLUE); colorAnim.setDuration(3000); - colorAnim.setEvaluator(new RGBEvaluator()); + colorAnim.setEvaluator(new ArgbEvaluator()); colorAnim.setRepeatCount(ValueAnimator.INFINITE); colorAnim.setRepeatMode(ValueAnimator.REVERSE); colorAnim.start();