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

  /development/samples/devbytes/animation/SquashAndStretch/src/com/example/squashandstretch/
SquashAndStretch.java 94 ObjectAnimator stretchAnim =
96 stretchAnim.setRepeatCount(1);
97 stretchAnim.setRepeatMode(ValueAnimator.REVERSE);
98 stretchAnim.setInterpolator(sDecelerator);
99 stretchAnim.setDuration(animationDuration);
111 set.playSequentially(downAnim, stretchAnim, upAnim);
  /development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
ToonGame.java 198 ObjectAnimator stretchAnim = ObjectAnimator.ofPropertyValuesHolder(view, pvhSX, pvhSY);
199 stretchAnim.setRepeatCount(1);
200 stretchAnim.setRepeatMode(ValueAnimator.REVERSE);
201 stretchAnim.setInterpolator(sDecelerator);
204 set.playSequentially(downAnim, stretchAnim, upAnim);

Completed in 40 milliseconds