Searched refs:yAnimator (Results 1 – 3 of 3) sorted by relevance
91 ObjectAnimator yAnimator = ObjectAnimator.ofFloat(uploadRoot, "translationY", 0, 100); in onCreate() local92 yAnimator.setRepeatMode(ValueAnimator.REVERSE); in onCreate()93 yAnimator.setRepeatCount(ValueAnimator.INFINITE); in onCreate()94 yAnimator.start(); in onCreate()
114 ObjectAnimator yAnimator = ObjectAnimator.ofFloat( in onCreate()116 yAnimator.setRepeatMode(ValueAnimator.REVERSE); in onCreate()117 yAnimator.setRepeatCount(100); in onCreate()118 yAnimator.start(); in onCreate()
673 ValueAnimator yAnimator = getChildTag(view, TAG_ANIMATOR_TRANSLATION_Y); in getFinalTranslationY() local674 if (yAnimator == null) { in getFinalTranslationY()