• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

よく使われているワード(クリックで追加)

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

development


コミットメタ情報

リビジョン678b7241cbdd894e98ece3454187f28748706f5c (tree)
日時2011-01-12 00:07:35
作者Chet Haase <chet@goog...>
コミッターAndroid Git Automerger

ログメッセージ

am 6e27f585: Rename RGBEvaluator to ArgbEvaluator

* commit '6e27f5856a9096a475039966106aec6546e6e277':

Rename RGBEvaluator to ArgbEvaluator

変更サマリ

差分

--- 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();