Home
last modified time | relevance | path

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

/development/samples/devbytes/animation/SquashAndStretch/src/com/example/squashandstretch/
DSquashAndStretch.java85 PropertyValuesHolder pvhSY = PropertyValuesHolder.ofFloat(View.SCALE_Y, 1.2f); in onButtonClick() local
87 view, pvhTY, pvhSX, pvhSY); in onButtonClick()
93 pvhSY = PropertyValuesHolder.ofFloat(View.SCALE_Y, .5f); in onButtonClick()
95 ObjectAnimator.ofPropertyValuesHolder(view, pvhSX, pvhSY); in onButtonClick()
104 pvhSY = PropertyValuesHolder.ofFloat(View.SCALE_Y, 1); in onButtonClick()
106 ObjectAnimator.ofPropertyValuesHolder(view, pvhTY, pvhSX, pvhSY); in onButtonClick()
/development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
DToonGame.java186 PropertyValuesHolder pvhSY = PropertyValuesHolder.ofFloat(View.SCALE_Y, 1.2f); in squishyBounce() local
187 ObjectAnimator downAnim = ObjectAnimator.ofPropertyValuesHolder(view, pvhTY, pvhSX, pvhSY); in squishyBounce()
192 pvhSY = PropertyValuesHolder.ofFloat(View.SCALE_Y, 1); in squishyBounce()
193 ObjectAnimator upAnim = ObjectAnimator.ofPropertyValuesHolder(view, pvhTY, pvhSX, pvhSY); in squishyBounce()
197 pvhSY = PropertyValuesHolder.ofFloat(View.SCALE_Y, squash); in squishyBounce()
198 ObjectAnimator stretchAnim = ObjectAnimator.ofPropertyValuesHolder(view, pvhSX, pvhSY); in squishyBounce()
DPlayerSetupActivity.java173 PropertyValuesHolder pvhSY = in buttonClick()
176 buttonCopy, pvhSX, pvhSY); in buttonClick()
301 PropertyValuesHolder pvhSY = PropertyValuesHolder.ofFloat(View.SCALE_Y, 1); in popChildrenIn() local
302 ObjectAnimator anim = ObjectAnimator.ofPropertyValuesHolder(child, pvhSX, pvhSY); in popChildrenIn()