Searched refs:AnimatableProperty (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | AnimatableProperty.java | 31 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() {
|
D | PropertyAnimator.java | 38 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/ |
D | ExpandableOutlineView.java | 32 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/ |
D | ViewState.java | 31 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/ |
D | PropertyAnimatorTest.java | 65 private AnimatableProperty mProperty 66 = new AnimatableProperty() {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | NotificationPanelView.java | 83 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()
|