Loading packages/SystemUI/src/com/android/systemui/statusbar/NotificationShelf.java +2 −3 Original line number Diff line number Diff line Loading @@ -151,12 +151,11 @@ public class NotificationShelf extends ActivatableNotificationView implements } public void fadeInTranslating() { float translation = mShelfIcons.getTranslationY(); mShelfIcons.setTranslationY(translation - mShelfAppearTranslation); mShelfIcons.setTranslationY(-mShelfAppearTranslation); mShelfIcons.setAlpha(0); mShelfIcons.animate() .setInterpolator(Interpolators.DECELERATE_QUINT) .translationY(translation) .translationY(0) .setDuration(SHELF_IN_TRANSLATION_DURATION) .start(); mShelfIcons.animate() Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/NotificationShelf.java +2 −3 Original line number Diff line number Diff line Loading @@ -151,12 +151,11 @@ public class NotificationShelf extends ActivatableNotificationView implements } public void fadeInTranslating() { float translation = mShelfIcons.getTranslationY(); mShelfIcons.setTranslationY(translation - mShelfAppearTranslation); mShelfIcons.setTranslationY(-mShelfAppearTranslation); mShelfIcons.setAlpha(0); mShelfIcons.animate() .setInterpolator(Interpolators.DECELERATE_QUINT) .translationY(translation) .translationY(0) .setDuration(SHELF_IN_TRANSLATION_DURATION) .start(); mShelfIcons.animate() Loading