Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DViewState.java330 ObjectAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_ALPHA); in startAlphaAnimation() local
334 if (previousAnimator != null) { in startAlphaAnimation()
337 PropertyValuesHolder[] values = previousAnimator.getValues(); in startAlphaAnimation()
343 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startAlphaAnimation()
384 long newDuration = cancelAnimatorAndGetNewDuration(properties.duration, previousAnimator); in startAlphaAnimation()
386 if (properties.delay > 0 && (previousAnimator == null in startAlphaAnimation()
387 || previousAnimator.getAnimatedFraction() == 0)) { in startAlphaAnimation()
417 ObjectAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_TRANSLATION_Z); in startZTranslationAnimation() local
421 if (previousAnimator != null) { in startZTranslationAnimation()
424 PropertyValuesHolder[] values = previousAnimator.getValues(); in startZTranslationAnimation()
[all …]
DExpandableViewState.java257 ValueAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_HEIGHT); in startHeightAnimation() local
261 if (previousAnimator != null) { in startHeightAnimation()
264 PropertyValuesHolder[] values = previousAnimator.getValues(); in startHeightAnimation()
270 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startHeightAnimation()
288 long newDuration = cancelAnimatorAndGetNewDuration(properties.duration, previousAnimator); in startHeightAnimation()
290 if (properties.delay > 0 && (previousAnimator == null in startHeightAnimation()
291 || previousAnimator.getAnimatedFraction() == 0)) { in startHeightAnimation()
339 ValueAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_SHADOW_ALPHA); in startShadowAlphaAnimation() local
343 if (previousAnimator != null) { in startShadowAlphaAnimation()
346 PropertyValuesHolder[] values = previousAnimator.getValues(); in startShadowAlphaAnimation()
[all …]
DNotificationStackScrollLayout.java2303 ObjectAnimator previousAnimator = mTopAnimator;
2304 if (previousAnimator != null && previousEndValue == newEndValue) {
2309 if (previousAnimator != null) {
2313 PropertyValuesHolder[] values = previousAnimator.getValues();
2317 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime());
2325 if (previousAnimator != null) {
2326 previousAnimator.cancel();
2352 ObjectAnimator previousAnimator = mBottomAnimator;
2353 if (previousAnimator != null && previousEndValue == newEndValue) {
2358 if (previousAnimator != null) {
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DPropertyAnimator.java42 ValueAnimator previousAnimator = ViewState.getChildTag(view, animatorTag); in setProperty() local
43 if (previousAnimator != null || animated) { in setProperty()
63 ValueAnimator previousAnimator = ViewState.getChildTag(view, animatorTag); in startAnimation() local
67 if (previousAnimator != null) { in startAnimation()
70 PropertyValuesHolder[] values = previousAnimator.getValues(); in startAnimation()
76 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in startAnimation()
94 previousAnimator); in startAnimation()
96 if (properties.delay > 0 && (previousAnimator == null in startAnimation()
97 || previousAnimator.getAnimatedFraction() == 0)) { in startAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DScrimController.java386 ValueAnimator previousAnimator = (ValueAnimator) scrim.getTag(TAG_KEY_ANIM); in setOrAdaptCurrentAnimation() local
394 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime()); in setOrAdaptCurrentAnimation()
708 ValueAnimator previousAnimator = ViewState.getChildTag(scrim, TAG_KEY_ANIM); in updateScrim() local
709 if (previousAnimator != null) { in updateScrim()
718 cancelAnimator(previousAnimator); in updateScrim()
759 protected void cancelAnimator(ValueAnimator previousAnimator) { in cancelAnimator() argument
760 if (previousAnimator != null) { in cancelAnimator()
761 previousAnimator.cancel(); in cancelAnimator()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DScrimControllerTest.java695 protected void cancelAnimator(ValueAnimator previousAnimator) { in cancelAnimator() argument
696 super.cancelAnimator(previousAnimator); in cancelAnimator()