Home
last modified time | relevance | path

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

/development/samples/devbytes/animation/MultiPropertyAnimations/src/com/example/android/multipropertyanimations/
DMultiPropertyAnimations.java39 private static final float TY_END = 200; field in MultiPropertyAnimations
59 view.setTranslationY(TY_START + fraction * (TY_END - TY_START)); in runValueAnimator()
71 view.animate().translationX(TX_END).translationY(TY_END); in runViewPropertyAnimator()
79 ObjectAnimator.ofFloat(view, View.TRANSLATION_Y, TY_END).start(); in runObjectAnimators()
89 PropertyValuesHolder pvhTY = PropertyValuesHolder.ofFloat(View.TRANSLATION_Y, TY_END); in runObjectAnimator()