Home
last modified time | relevance | path

Searched refs:upAnim (Results 1 – 3 of 3) sorted by relevance

/development/samples/devbytes/animation/SquashAndStretch/src/com/example/squashandstretch/
DSquashAndStretch.java105 ObjectAnimator upAnim = in onButtonClick() local
107 upAnim.setDuration((long) (animationDuration * 2)); in onButtonClick()
108 upAnim.setInterpolator(sDecelerator); in onButtonClick()
111 set.playSequentially(downAnim, stretchAnim, upAnim); in onButtonClick()
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DShadowCardDrag.java218 ObjectAnimator upAnim = ObjectAnimator.ofFloat(mCard, "translationZ", in onCreate()
220 upAnim.setDuration(100); in onCreate()
221 upAnim.setInterpolator(new DecelerateInterpolator()); in onCreate()
222 upAnim.start(); in onCreate()
/development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
DToonGame.java193 ObjectAnimator upAnim = ObjectAnimator.ofPropertyValuesHolder(view, pvhTY, pvhSX, pvhSY); in squishyBounce() local
194 upAnim.setInterpolator(sDecelerator); in squishyBounce()
204 set.playSequentially(downAnim, stretchAnim, upAnim); in squishyBounce()