Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationIconContainer.java847 AnimationProperties animationProperties = null; in applyToView() local
856 animationProperties = ADD_ICON_PROPERTIES; in applyToView()
860 animationProperties = DOT_ANIMATION_PROPERTIES; in applyToView()
867 animationProperties = DOT_ANIMATION_PROPERTIES; in applyToView()
885 if (animationProperties != null) { in applyToView()
886 animationFilter.combineFilter(animationProperties.getAnimationFilter()); in applyToView()
887 sTempProperties.combineCustomInterpolators(animationProperties); in applyToView()
889 animationProperties = sTempProperties; in applyToView()
890 animationProperties.setDuration(CANNED_ANIMATION_DURATION); in applyToView()
902 animationProperties = sTempProperties; in applyToView()
[all …]
DStatusIconContainer.java467 AnimationProperties animationProperties = null; in applyToView() local
477 animationProperties = ADD_ICON_PROPERTIES; in applyToView()
484 animationProperties = ANIMATE_ALL_PROPERTIES; in applyToView()
488 animationProperties = X_ANIMATION_PROPERTIES; in applyToView()
492 if (animationProperties != null && !qsExpansionTransitioning) { in applyToView()
493 animateTo(view, animationProperties); in applyToView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DViewState.java376 public void animateTo(View child, AnimationProperties animationProperties) { in animateTo() argument
392 startXTranslationAnimation(child, animationProperties); in animateTo()
399 startYTranslationAnimation(child, animationProperties); in animateTo()
406 startZTranslationAnimation(child, animationProperties); in animateTo()
413 PropertyAnimator.startAnimation(child, SCALE_X_PROPERTY, mScaleX, animationProperties); in animateTo()
420 PropertyAnimator.startAnimation(child, SCALE_Y_PROPERTY, mScaleY, animationProperties); in animateTo()
427 startAlphaAnimation(child, animationProperties); in animateTo()