Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DAnimatableProperty.java31 public abstract class AnimatableProperty { class
33 public static final AnimatableProperty X = AnimatableProperty.from(View.X,
35 public static final AnimatableProperty Y = AnimatableProperty.from(View.Y,
46 public static <T extends View> AnimatableProperty from(String name, BiConsumer<T, Float> setter, in from()
60 return new AnimatableProperty() { in from()
83 public static <T extends View> AnimatableProperty from(Property<T, Float> property,
85 return new AnimatableProperty() {
DPropertyAnimator.java38 AnimatableProperty animatableProperty, float newEndValue, in setProperty()
51 AnimatableProperty animatableProperty, float newEndValue, in startAnimation()
118 public static <T extends View> boolean isAnimating(T view, AnimatableProperty property) { in isAnimating()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableOutlineView.java32 import com.android.systemui.statusbar.notification.AnimatableProperty;
42 private static final AnimatableProperty TOP_ROUNDNESS = AnimatableProperty.from(
49 private static final AnimatableProperty BOTTOM_ROUNDNESS = AnimatableProperty.from(
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DViewState.java31 import com.android.systemui.statusbar.notification.AnimatableProperty;
72 private static final AnimatableProperty SCALE_X_PROPERTY
73 = new AnimatableProperty() {
96 private static final AnimatableProperty SCALE_Y_PROPERTY
97 = new AnimatableProperty() {
259 public static boolean isAnimating(View view, AnimatableProperty property) { in isAnimating()
411 private void updateAnimation(View view, AnimatableProperty property, in updateAnimation()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DPropertyAnimatorTest.java65 private AnimatableProperty mProperty
66 = new AnimatableProperty() {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationPanelView.java83 import com.android.systemui.statusbar.notification.AnimatableProperty;
317 private final AnimatableProperty PANEL_ALPHA = AnimatableProperty.from(
693 PropertyAnimator.setProperty(mKeyguardStatusView, AnimatableProperty.X, in positionClockAndNotifications()
695 PropertyAnimator.setProperty(mKeyguardStatusView, AnimatableProperty.Y, in positionClockAndNotifications()