• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

development


Commit MetaInfo

Revision678b7241cbdd894e98ece3454187f28748706f5c (tree)
Time2011-01-12 00:07:35
AuthorChet Haase <chet@goog...>
CommiterAndroid Git Automerger

Log Message

am 6e27f585: Rename RGBEvaluator to ArgbEvaluator

* commit '6e27f5856a9096a475039966106aec6546e6e277':

Rename RGBEvaluator to ArgbEvaluator

Change Summary

Incremental Difference

--- 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 {
6969 // every frame of the animation.
7070 ValueAnimator colorAnim = ObjectAnimator.ofInt(this, "backgroundColor", RED, BLUE);
7171 colorAnim.setDuration(3000);
72- colorAnim.setEvaluator(new RGBEvaluator());
72+ colorAnim.setEvaluator(new ArgbEvaluator());
7373 colorAnim.setRepeatCount(ValueAnimator.INFINITE);
7474 colorAnim.setRepeatMode(ValueAnimator.REVERSE);
7575 colorAnim.start();