Home
last modified time | relevance | path

Searched refs:AnimatableProperty (Results 1 – 16 of 16) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DAnimatableProperty.java31 public abstract class AnimatableProperty { class
33 public static final AnimatableProperty X = AnimatableProperty.from(View.X,
36 public static final AnimatableProperty Y = AnimatableProperty.from(View.Y,
39 public static final AnimatableProperty TRANSLATION_X = AnimatableProperty.from(
43 public static final AnimatableProperty SCALE_X = AnimatableProperty.from(
47 public static final AnimatableProperty SCALE_Y = AnimatableProperty.from(
51 public static final AnimatableProperty ALPHA = AnimatableProperty.from(
60 public static final AnimatableProperty ABSOLUTE_X = AnimatableProperty.from(
86 public static final AnimatableProperty ABSOLUTE_Y = AnimatableProperty.from(
107 public static final AnimatableProperty WIDTH = AnimatableProperty.from(
[all …]
H A DPropertyAnimator.java45 AnimatableProperty animatableProperty, float newEndValue, in setProperty()
58 AnimatableProperty animatableProperty, float newEndValue, in startAnimation()
135 public static <T extends View> void applyImmediately(T view, AnimatableProperty property, in applyImmediately()
141 public static void cancelAnimation(View view, AnimatableProperty property) { in cancelAnimation()
148 public static boolean isAnimating(View view, AnimatableProperty property) { in isAnimating()
H A DRoundable.kt447 private fun topAnimatable(roundable: Roundable): AnimatableProperty =
448 AnimatableProperty.from(
462 private fun bottomAnimatable(roundable: Roundable): AnimatableProperty =
463 AnimatableProperty.from(
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
H A DKeyguardStatusViewControllerTest.java31 import com.android.systemui.statusbar.notification.AnimatableProperty;
84 verify(mControllerMock).setProperty(AnimatableProperty.Y, 15f, true); in updatePosition_primaryClockAnimation()
87 verify(mControllerMock).setProperty(AnimatableProperty.SCALE_X, 1f, true); in updatePosition_primaryClockAnimation()
88 verify(mControllerMock).setProperty(AnimatableProperty.SCALE_Y, 1f, true); in updatePosition_primaryClockAnimation()
99 verify(mControllerMock).setProperty(AnimatableProperty.Y, 15f, true); in updatePosition_alternateClockAnimation()
102 verify(mControllerMock).setProperty(AnimatableProperty.SCALE_X, 20f, true); in updatePosition_alternateClockAnimation()
103 verify(mControllerMock).setProperty(AnimatableProperty.SCALE_Y, 20f, true); in updatePosition_alternateClockAnimation()
H A DKeyguardStatusViewControllerBaseTest.java33 import com.android.systemui.statusbar.notification.AnimatableProperty;
87 AnimatableProperty property, in setup()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardStatusAreaView.kt8 import com.android.systemui.statusbar.notification.AnimatableProperty
52 AnimatableProperty.from(
69 AnimatableProperty.from(
86 AnimatableProperty.from(
103 AnimatableProperty.from(
H A DKeyguardVisibilityHelper.java29 import com.android.systemui.statusbar.notification.AnimatableProperty;
91 PropertyAnimator.cancelAnimation(mView, AnimatableProperty.ALPHA); in setViewVisibility()
112 mView, AnimatableProperty.ALPHA, 0f, animProps, true /* animate */); in setViewVisibility()
118 mView, AnimatableProperty.ALPHA, 1f, in setViewVisibility()
150 PropertyAnimator.cancelAnimation(mView, AnimatableProperty.Y); in setViewVisibility()
151 PropertyAnimator.setProperty(mView, AnimatableProperty.Y, target, in setViewVisibility()
161 mView, AnimatableProperty.ALPHA, 0f, in setViewVisibility()
H A DKeyguardStatusViewController.java60 import com.android.systemui.statusbar.notification.AnimatableProperty;
291 void setProperty(AnimatableProperty property, float value, boolean animate) { in setProperty()
299 setProperty(AnimatableProperty.Y, y, animate); in updatePosition()
306 setProperty(AnimatableProperty.SCALE_X, scale, animate); in updatePosition()
307 setProperty(AnimatableProperty.SCALE_Y, scale, animate); in updatePosition()
311 setProperty(AnimatableProperty.SCALE_X, 1f, animate); in updatePosition()
312 setProperty(AnimatableProperty.SCALE_Y, 1f, animate); in updatePosition()
H A DKeyguardClockSwitchController.java55 import com.android.systemui.statusbar.notification.AnimatableProperty;
461 PropertyAnimator.setProperty(mSmallClockFrame, AnimatableProperty.TRANSLATION_X, in updatePosition()
463 PropertyAnimator.setProperty(mLargeClockFrame, AnimatableProperty.SCALE_X, in updatePosition()
465 PropertyAnimator.setProperty(mLargeClockFrame, AnimatableProperty.SCALE_Y, in updatePosition()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DUnlockedScreenOffAnimationController.kt29 import com.android.systemui.statusbar.notification.AnimatableProperty
185 PropertyAnimator.cancelAnimation(keyguardView, AnimatableProperty.Y)
186 PropertyAnimator.setProperty(keyguardView, AnimatableProperty.Y, currentY,
192 PropertyAnimator.cancelAnimation(keyguardView, AnimatableProperty.ALPHA)
194 keyguardView, AnimatableProperty.ALPHA, 1f,
H A DKeyguardStatusBarViewController.java58 import com.android.systemui.statusbar.notification.AnimatableProperty;
88 private final AnimatableProperty mHeadsUpShowingAmountAnimation = AnimatableProperty.from(
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DViewState.java32 import com.android.systemui.statusbar.notification.AnimatableProperty;
75 private static final AnimatableProperty SCALE_X_PROPERTY
76 = new AnimatableProperty() {
99 private static final AnimatableProperty SCALE_Y_PROPERTY
100 = new AnimatableProperty() {
366 public static boolean isAnimating(View view, AnimatableProperty property) { in isAnimating()
519 private void updateAnimation(View view, AnimatableProperty property, in updateAnimation()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardQsUserSwitchController.java45 import com.android.systemui.statusbar.notification.AnimatableProperty;
350 PropertyAnimator.setProperty(mView, AnimatableProperty.Y, y, ANIMATION_PROPERTIES, animate); in updatePosition()
351 PropertyAnimator.setProperty(mView, AnimatableProperty.TRANSLATION_X, -Math.abs(x), in updatePosition()
H A DKeyguardUserSwitcherController.java46 import com.android.systemui.statusbar.notification.AnimatableProperty;
336 PropertyAnimator.setProperty(mListView, AnimatableProperty.Y, y, ANIMATION_PROPERTIES, in updatePosition()
338 PropertyAnimator.setProperty(mListView, AnimatableProperty.TRANSLATION_X, -Math.abs(x), in updatePosition()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
H A DPropertyAnimatorTest.java65 private AnimatableProperty mProperty
66 = new AnimatableProperty() {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
H A DNotificationPanelViewController.java180 import com.android.systemui.statusbar.notification.AnimatableProperty;
481 private final AnimatableProperty mPanelAlphaAnimator = AnimatableProperty.from("panelAlpha",