HomeSort by relevance Sort by last modified time
    Searched refs:upAnim (Results 1 - 3 of 3) sorted by null

  /development/samples/devbytes/animation/SquashAndStretch/src/com/example/squashandstretch/
SquashAndStretch.java 105 ObjectAnimator upAnim =
107 upAnim.setDuration((long) (animationDuration * 2));
108 upAnim.setInterpolator(sDecelerator);
111 set.playSequentially(downAnim, stretchAnim, upAnim);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ShadowCardDrag.java 218 ObjectAnimator upAnim = ObjectAnimator.ofFloat(mCard, "translationZ",
220 upAnim.setDuration(100);
221 upAnim.setInterpolator(new DecelerateInterpolator());
222 upAnim.start();
  /development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
ToonGame.java 193 ObjectAnimator upAnim = ObjectAnimator.ofPropertyValuesHolder(view, pvhTY, pvhSX, pvhSY);
194 upAnim.setInterpolator(sDecelerator);
204 set.playSequentially(downAnim, stretchAnim, upAnim);

Completed in 626 milliseconds