Home
last modified time | relevance | path

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

/development/samples/devbytes/animation/MultiPropertyAnimations/src/com/example/android/multipropertyanimations/
DMultiPropertyAnimations.java38 private static final float TX_END = 400; field in MultiPropertyAnimations
58 view.setTranslationX(TX_START + fraction * (TX_END - TX_START)); in runValueAnimator()
71 view.animate().translationX(TX_END).translationY(TY_END); in runViewPropertyAnimator()
78 ObjectAnimator.ofFloat(view, View.TRANSLATION_X, TX_END).start(); in runObjectAnimators()
88 PropertyValuesHolder pvhTX = PropertyValuesHolder.ofFloat(View.TRANSLATION_X, TX_END); in runObjectAnimator()