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.java701 AnimationProperties animationProperties = null; in applyToView() local
711 animationProperties = ADD_ICON_PROPERTIES; in applyToView()
715 animationProperties = DOT_ANIMATION_PROPERTIES; in applyToView()
722 animationProperties = DOT_ANIMATION_PROPERTIES; in applyToView()
732 if (animationProperties != null) { in applyToView()
733 animationFilter.combineFilter(animationProperties.getAnimationFilter()); in applyToView()
734 sTempProperties.combineCustomInterpolators(animationProperties); in applyToView()
736 animationProperties = sTempProperties; in applyToView()
737 animationProperties.setDuration(CANNED_ANIMATION_DURATION); in applyToView()
749 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()