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.java692 AnimationProperties animationProperties = null; in applyToView() local
702 animationProperties = ADD_ICON_PROPERTIES; in applyToView()
706 animationProperties = DOT_ANIMATION_PROPERTIES; in applyToView()
713 animationProperties = DOT_ANIMATION_PROPERTIES; in applyToView()
723 if (animationProperties != null) { in applyToView()
724 animationFilter.combineFilter(animationProperties.getAnimationFilter()); in applyToView()
725 sTempProperties.combineCustomInterpolators(animationProperties); in applyToView()
727 animationProperties = sTempProperties; in applyToView()
728 animationProperties.setDuration(CANNED_ANIMATION_DURATION); in applyToView()
740 animationProperties = sTempProperties; in applyToView()
[all …]
DStatusIconContainer.java397 AnimationProperties animationProperties = null; in applyToView() local
407 animationProperties = ADD_ICON_PROPERTIES; in applyToView()
414 animationProperties = ANIMATE_ALL_PROPERTIES; in applyToView()
418 animationProperties = X_ANIMATION_PROPERTIES; in applyToView()
422 if (animationProperties != null) { in applyToView()
423 animateTo(view, animationProperties); in applyToView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DViewState.java268 public void animateTo(View child, AnimationProperties animationProperties) { in animateTo() argument
284 startXTranslationAnimation(child, animationProperties); in animateTo()
291 startYTranslationAnimation(child, animationProperties); in animateTo()
298 startZTranslationAnimation(child, animationProperties); in animateTo()
305 PropertyAnimator.startAnimation(child, SCALE_X_PROPERTY, scaleX, animationProperties); in animateTo()
312 PropertyAnimator.startAnimation(child, SCALE_Y_PROPERTY, scaleY, animationProperties); in animateTo()
319 startAlphaAnimation(child, animationProperties); in animateTo()