Loading packages/SystemUI/src/com/android/systemui/keyguard/ui/binder/KeyguardBottomAreaViewBinder.kt +0 −10 Original line number Diff line number Diff line Loading @@ -79,12 +79,6 @@ object KeyguardBottomAreaViewBinder { //If updated, be sure to update [KeyguardQuickAffordanceViewBinder.kt] @Deprecated("Deprecated as part of b/278057014") interface Binding { /** * Returns a collection of [ViewPropertyAnimator] instances that can be used to animate the * indication areas. */ fun getIndicationAreaAnimators(): List<ViewPropertyAnimator> /** Notifies that device configuration has changed. */ fun onConfigurationChanged() Loading Loading @@ -281,10 +275,6 @@ object KeyguardBottomAreaViewBinder { } return object : Binding { override fun getIndicationAreaAnimators(): List<ViewPropertyAnimator> { return listOf(ambientIndicationArea).mapNotNull { it?.animate() } } override fun onConfigurationChanged() { configurationBasedDimensions.value = loadFromResources(view) } Loading packages/SystemUI/src/com/android/systemui/shade/NotificationPanelViewController.java +9 −130 Original line number Diff line number Diff line Loading @@ -141,7 +141,6 @@ import com.android.systemui.keyguard.shared.model.TransitionState; import com.android.systemui.keyguard.shared.model.TransitionStep; import com.android.systemui.keyguard.shared.model.WakefulnessModel; import com.android.systemui.keyguard.ui.binder.KeyguardLongPressViewBinder; import com.android.systemui.keyguard.ui.view.KeyguardRootView; import com.android.systemui.keyguard.ui.viewmodel.DreamingToLockscreenTransitionViewModel; import com.android.systemui.keyguard.ui.viewmodel.GoneToDreamingLockscreenHostedTransitionViewModel; import com.android.systemui.keyguard.ui.viewmodel.GoneToDreamingTransitionViewModel; Loading Loading @@ -320,7 +319,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump private final NotificationStackScrollLayoutController mNotificationStackScrollLayoutController; private final LayoutInflater mLayoutInflater; private final FeatureFlags mFeatureFlags; private final PowerManager mPowerManager; private final AccessibilityManager mAccessibilityManager; private final NotificationWakeUpCoordinator mWakeUpCoordinator; private final PulseExpansionHandler mPulseExpansionHandler; Loading Loading @@ -357,7 +355,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump private final AccessibilityDelegate mAccessibilityDelegate = new ShadeAccessibilityDelegate(); private final NotificationGutsManager mGutsManager; private final AlternateBouncerInteractor mAlternateBouncerInteractor; private final KeyguardRootView mKeyguardRootView; private final QuickSettingsController mQsController; private final TouchHandler mTouchHandler = new TouchHandler(); Loading @@ -371,7 +368,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump /** The current squish amount for the predictive back animation */ private float mCurrentBackProgress = 0.0f; private boolean mTracking; private boolean mHintAnimationRunning; @Deprecated private KeyguardBottomAreaView mKeyguardBottomArea; private boolean mExpanding; Loading Loading @@ -780,8 +776,7 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump ActivityStarter activityStarter, SharedNotificationContainerInteractor sharedNotificationContainerInteractor, KeyguardViewConfigurator keyguardViewConfigurator, KeyguardFaceAuthInteractor keyguardFaceAuthInteractor, KeyguardRootView keyguardRootView) { KeyguardFaceAuthInteractor keyguardFaceAuthInteractor) { keyguardStateController.addCallback(new KeyguardStateController.Callback() { @Override public void onKeyguardFadingAwayChanged() { Loading Loading @@ -886,7 +881,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump mAnimateBack = mFeatureFlags.isEnabled(Flags.WM_SHADE_ANIMATE_BACK_GESTURE); mTrackpadGestureFeaturesEnabled = mFeatureFlags.isEnabled(Flags.TRACKPAD_GESTURE_FEATURES); mFalsingCollector = falsingCollector; mPowerManager = powerManager; mWakeUpCoordinator = coordinator; mMainDispatcher = mainDispatcher; mAccessibilityManager = accessibilityManager; Loading Loading @@ -987,7 +981,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump } }); mAlternateBouncerInteractor = alternateBouncerInteractor; mKeyguardRootView = keyguardRootView; dumpManager.registerDumpable(this); } Loading Loading @@ -1519,7 +1512,7 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump } private boolean shouldAvoidChangingNotificationsCount() { return mHintAnimationRunning || mUnlockedScreenOffAnimationController.isAnimationPlaying(); return mUnlockedScreenOffAnimationController.isAnimationPlaying(); } @Deprecated Loading Loading @@ -2645,7 +2638,7 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump && !mHeadsUpManager.hasPinnedHeadsUp()) { alpha = getFadeoutAlpha(); } if (mBarState == KEYGUARD && !mHintAnimationRunning if (mBarState == KEYGUARD && !mKeyguardBypassController.getBypassEnabled() && !mQsController.getFullyExpanded()) { alpha *= mClockPositionResult.clockAlpha; Loading Loading @@ -2683,7 +2676,7 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump // change due to "unlock hint animation." In this case, fading out the bottom area // would also hide the message that says "swipe to unlock," we don't want to do that. float expansionAlpha = MathUtils.constrainedMap(0f, 1f, isUnlockHintRunning() ? 0f : KeyguardBouncerConstants.ALPHA_EXPANSION_THRESHOLD, 1f, KeyguardBouncerConstants.ALPHA_EXPANSION_THRESHOLD, 1f, getExpandedFraction()); float alpha = Math.min(expansionAlpha, 1 - mQsController.computeExpansionFraction()); Loading Loading @@ -2865,44 +2858,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump mView.getHeight(), mNavigationBarBottomHeight); } @VisibleForTesting void startUnlockHintAnimation() { if (mPowerManager.isPowerSaveMode() || mAmbientState.getDozeAmount() > 0f) { onUnlockHintStarted(); onUnlockHintFinished(); return; } // We don't need to hint the user if an animation is already running or the user is changing // the expansion. if (mHeightAnimator != null || mTracking) { return; } notifyExpandingStarted(); startUnlockHintAnimationPhase1(() -> { notifyExpandingFinished(); onUnlockHintFinished(); mHintAnimationRunning = false; }); onUnlockHintStarted(); mHintAnimationRunning = true; } @VisibleForTesting void onUnlockHintFinished() { // Delay the reset a bit so the user can read the text. mKeyguardIndicationController.hideTransientIndicationDelayed(HINT_RESET_DELAY_MS); mScrimController.setExpansionAffectsAlpha(true); mNotificationStackScrollLayoutController.setUnlockHintRunning(false); } @VisibleForTesting void onUnlockHintStarted() { mKeyguardIndicationController.showActionToUnlock(); mScrimController.setExpansionAffectsAlpha(false); mNotificationStackScrollLayoutController.setUnlockHintRunning(true); } private boolean shouldUseDismissingAnimation() { return mBarState != StatusBarState.SHADE && (mKeyguardStateController.canDismissLockScreen() || !isTracking()); Loading Loading @@ -2989,7 +2944,7 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump 0 /* lengthDp - N/A */, 0 /* velocityDp - N/A */); mLockscreenGestureLogger .log(LockscreenUiEvent.LOCKSCREEN_LOCK_SHOW_HINT); startUnlockHintAnimation(); mKeyguardIndicationController.showActionToUnlock(); } } break; Loading Loading @@ -3399,7 +3354,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump ipw.print("mOverExpansion="); ipw.println(mOverExpansion); ipw.print("mExpandedHeight="); ipw.println(mExpandedHeight); ipw.print("mTracking="); ipw.println(mTracking); ipw.print("mHintAnimationRunning="); ipw.println(mHintAnimationRunning); ipw.print("mExpanding="); ipw.println(mExpanding); ipw.print("mSplitShadeEnabled="); ipw.println(mSplitShadeEnabled); ipw.print("mKeyguardNotificationBottomPadding="); Loading Loading @@ -4058,73 +4012,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump mView.removeCallbacks(mFlingCollapseRunnable); } @Override public boolean isUnlockHintRunning() { return mHintAnimationRunning; } /** * Phase 1: Move everything upwards. */ private void startUnlockHintAnimationPhase1(final Runnable onAnimationFinished) { float target = Math.max(0, getMaxPanelHeight() - mHintDistance); ValueAnimator animator = createHeightAnimator(target); animator.setDuration(250); animator.setInterpolator(Interpolators.FAST_OUT_SLOW_IN); animator.addListener(new AnimatorListenerAdapter() { private boolean mCancelled; @Override public void onAnimationCancel(Animator animation) { mCancelled = true; } @Override public void onAnimationEnd(Animator animation) { if (mCancelled) { setAnimator(null); onAnimationFinished.run(); } else { startUnlockHintAnimationPhase2(onAnimationFinished); } } }); animator.start(); setAnimator(animator); if (mFeatureFlags.isEnabled(Flags.MIGRATE_SPLIT_KEYGUARD_BOTTOM_AREA)) { final ViewPropertyAnimator mKeyguardRootViewAnimator = mKeyguardRootView.animate(); mKeyguardRootViewAnimator .translationY(-mHintDistance) .setDuration(250) .setInterpolator(Interpolators.FAST_OUT_SLOW_IN) .withEndAction(() -> mKeyguardRootViewAnimator .translationY(0) .setDuration(450) .setInterpolator(mBounceInterpolator) .start()) .start(); } else { final List<ViewPropertyAnimator> indicationAnimators = mKeyguardBottomArea.getIndicationAreaAnimators(); for (final ViewPropertyAnimator indicationAreaAnimator : indicationAnimators) { indicationAreaAnimator .translationY(-mHintDistance) .setDuration(250) .setInterpolator(Interpolators.FAST_OUT_SLOW_IN) .withEndAction(() -> indicationAreaAnimator .translationY(0) .setDuration(450) .setInterpolator(mBounceInterpolator) .start()) .start(); } } } private void setAnimator(ValueAnimator animator) { mHeightAnimator = animator; if (animator == null && mPanelUpdateWhenAnimatorEnds) { Loading @@ -4135,7 +4022,7 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump /** Returns whether a shade or QS expansion animation is running */ private boolean isShadeOrQsHeightAnimationRunning() { return mHeightAnimator != null && !mHintAnimationRunning && !mIsSpringBackAnimation; return mHeightAnimator != null && !mIsSpringBackAnimation; } /** Loading Loading @@ -4214,10 +4101,8 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump /** Called when the user performs a click anywhere in the empty area of the panel. */ private void onEmptySpaceClick() { if (!mHintAnimationRunning) { onMiddleClicked(); } } @VisibleForTesting boolean isClosing() { Loading Loading @@ -4816,11 +4701,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump return mStatusBarStateListener; } @VisibleForTesting boolean isHintAnimationRunning() { return mHintAnimationRunning; } private void onStatusBarWindowStateChanged(@StatusBarManager.WindowVisibleState int state) { if (state != WINDOW_STATE_SHOWING && mStatusBarStateController.getState() == StatusBarState.SHADE) { Loading Loading @@ -4909,12 +4789,11 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump mAnimatingOnDown = mHeightAnimator != null && !mIsSpringBackAnimation; mMinExpandHeight = 0.0f; mDownTime = mSystemClock.uptimeMillis(); if (mAnimatingOnDown && mClosing && !mHintAnimationRunning) { if (mAnimatingOnDown && mClosing) { cancelHeightAnimator(); mTouchSlopExceeded = true; mShadeLog.v("NotificationPanelViewController MotionEvent intercepted:" + " mAnimatingOnDown: true, mClosing: true, mHintAnimationRunning:" + " false"); + " mAnimatingOnDown: true, mClosing: true"); return true; } if (!mTracking || isFullyCollapsed()) { Loading packages/SystemUI/src/com/android/systemui/shade/ShadeViewController.kt +0 −6 Original line number Diff line number Diff line Loading @@ -199,12 +199,6 @@ interface ShadeViewController { /** Animate to expanded shade after a delay in ms. Used for lockscreen to shade transition. */ fun transitionToExpandedShade(delay: Long) /** * Returns whether the unlock hint animation is running. The unlock hint animation is when the * user taps the lock screen, causing the contents of the lock screen visually bounce. */ val isUnlockHintRunning: Boolean /** @see ViewGroupFadeHelper.reset */ fun resetViewGroupFade() Loading packages/SystemUI/src/com/android/systemui/shade/ShadeViewControllerEmptyImpl.kt +0 −1 Original line number Diff line number Diff line Loading @@ -73,7 +73,6 @@ class ShadeViewControllerEmptyImpl @Inject constructor() : ShadeViewController { return false } override fun transitionToExpandedShade(delay: Long) {} override val isUnlockHintRunning: Boolean = false override fun resetViewGroupFade() {} override fun setKeyguardTransitionProgress(keyguardAlpha: Float, keyguardTranslationY: Int) {} Loading packages/SystemUI/src/com/android/systemui/statusbar/NotificationShelf.java +1 −1 Original line number Diff line number Diff line Loading @@ -776,7 +776,7 @@ public class NotificationShelf extends ActivatableNotificationView implements St } } else if (viewEnd >= shelfClipStart && (!mAmbientState.isUnlockHintRunning() || view.isInShelf()) && view.isInShelf() && (mAmbientState.isShadeExpanded() || (!view.isPinned() && !view.isHeadsUpAnimatingAway()))) { Loading Loading
packages/SystemUI/src/com/android/systemui/keyguard/ui/binder/KeyguardBottomAreaViewBinder.kt +0 −10 Original line number Diff line number Diff line Loading @@ -79,12 +79,6 @@ object KeyguardBottomAreaViewBinder { //If updated, be sure to update [KeyguardQuickAffordanceViewBinder.kt] @Deprecated("Deprecated as part of b/278057014") interface Binding { /** * Returns a collection of [ViewPropertyAnimator] instances that can be used to animate the * indication areas. */ fun getIndicationAreaAnimators(): List<ViewPropertyAnimator> /** Notifies that device configuration has changed. */ fun onConfigurationChanged() Loading Loading @@ -281,10 +275,6 @@ object KeyguardBottomAreaViewBinder { } return object : Binding { override fun getIndicationAreaAnimators(): List<ViewPropertyAnimator> { return listOf(ambientIndicationArea).mapNotNull { it?.animate() } } override fun onConfigurationChanged() { configurationBasedDimensions.value = loadFromResources(view) } Loading
packages/SystemUI/src/com/android/systemui/shade/NotificationPanelViewController.java +9 −130 Original line number Diff line number Diff line Loading @@ -141,7 +141,6 @@ import com.android.systemui.keyguard.shared.model.TransitionState; import com.android.systemui.keyguard.shared.model.TransitionStep; import com.android.systemui.keyguard.shared.model.WakefulnessModel; import com.android.systemui.keyguard.ui.binder.KeyguardLongPressViewBinder; import com.android.systemui.keyguard.ui.view.KeyguardRootView; import com.android.systemui.keyguard.ui.viewmodel.DreamingToLockscreenTransitionViewModel; import com.android.systemui.keyguard.ui.viewmodel.GoneToDreamingLockscreenHostedTransitionViewModel; import com.android.systemui.keyguard.ui.viewmodel.GoneToDreamingTransitionViewModel; Loading Loading @@ -320,7 +319,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump private final NotificationStackScrollLayoutController mNotificationStackScrollLayoutController; private final LayoutInflater mLayoutInflater; private final FeatureFlags mFeatureFlags; private final PowerManager mPowerManager; private final AccessibilityManager mAccessibilityManager; private final NotificationWakeUpCoordinator mWakeUpCoordinator; private final PulseExpansionHandler mPulseExpansionHandler; Loading Loading @@ -357,7 +355,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump private final AccessibilityDelegate mAccessibilityDelegate = new ShadeAccessibilityDelegate(); private final NotificationGutsManager mGutsManager; private final AlternateBouncerInteractor mAlternateBouncerInteractor; private final KeyguardRootView mKeyguardRootView; private final QuickSettingsController mQsController; private final TouchHandler mTouchHandler = new TouchHandler(); Loading @@ -371,7 +368,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump /** The current squish amount for the predictive back animation */ private float mCurrentBackProgress = 0.0f; private boolean mTracking; private boolean mHintAnimationRunning; @Deprecated private KeyguardBottomAreaView mKeyguardBottomArea; private boolean mExpanding; Loading Loading @@ -780,8 +776,7 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump ActivityStarter activityStarter, SharedNotificationContainerInteractor sharedNotificationContainerInteractor, KeyguardViewConfigurator keyguardViewConfigurator, KeyguardFaceAuthInteractor keyguardFaceAuthInteractor, KeyguardRootView keyguardRootView) { KeyguardFaceAuthInteractor keyguardFaceAuthInteractor) { keyguardStateController.addCallback(new KeyguardStateController.Callback() { @Override public void onKeyguardFadingAwayChanged() { Loading Loading @@ -886,7 +881,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump mAnimateBack = mFeatureFlags.isEnabled(Flags.WM_SHADE_ANIMATE_BACK_GESTURE); mTrackpadGestureFeaturesEnabled = mFeatureFlags.isEnabled(Flags.TRACKPAD_GESTURE_FEATURES); mFalsingCollector = falsingCollector; mPowerManager = powerManager; mWakeUpCoordinator = coordinator; mMainDispatcher = mainDispatcher; mAccessibilityManager = accessibilityManager; Loading Loading @@ -987,7 +981,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump } }); mAlternateBouncerInteractor = alternateBouncerInteractor; mKeyguardRootView = keyguardRootView; dumpManager.registerDumpable(this); } Loading Loading @@ -1519,7 +1512,7 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump } private boolean shouldAvoidChangingNotificationsCount() { return mHintAnimationRunning || mUnlockedScreenOffAnimationController.isAnimationPlaying(); return mUnlockedScreenOffAnimationController.isAnimationPlaying(); } @Deprecated Loading Loading @@ -2645,7 +2638,7 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump && !mHeadsUpManager.hasPinnedHeadsUp()) { alpha = getFadeoutAlpha(); } if (mBarState == KEYGUARD && !mHintAnimationRunning if (mBarState == KEYGUARD && !mKeyguardBypassController.getBypassEnabled() && !mQsController.getFullyExpanded()) { alpha *= mClockPositionResult.clockAlpha; Loading Loading @@ -2683,7 +2676,7 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump // change due to "unlock hint animation." In this case, fading out the bottom area // would also hide the message that says "swipe to unlock," we don't want to do that. float expansionAlpha = MathUtils.constrainedMap(0f, 1f, isUnlockHintRunning() ? 0f : KeyguardBouncerConstants.ALPHA_EXPANSION_THRESHOLD, 1f, KeyguardBouncerConstants.ALPHA_EXPANSION_THRESHOLD, 1f, getExpandedFraction()); float alpha = Math.min(expansionAlpha, 1 - mQsController.computeExpansionFraction()); Loading Loading @@ -2865,44 +2858,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump mView.getHeight(), mNavigationBarBottomHeight); } @VisibleForTesting void startUnlockHintAnimation() { if (mPowerManager.isPowerSaveMode() || mAmbientState.getDozeAmount() > 0f) { onUnlockHintStarted(); onUnlockHintFinished(); return; } // We don't need to hint the user if an animation is already running or the user is changing // the expansion. if (mHeightAnimator != null || mTracking) { return; } notifyExpandingStarted(); startUnlockHintAnimationPhase1(() -> { notifyExpandingFinished(); onUnlockHintFinished(); mHintAnimationRunning = false; }); onUnlockHintStarted(); mHintAnimationRunning = true; } @VisibleForTesting void onUnlockHintFinished() { // Delay the reset a bit so the user can read the text. mKeyguardIndicationController.hideTransientIndicationDelayed(HINT_RESET_DELAY_MS); mScrimController.setExpansionAffectsAlpha(true); mNotificationStackScrollLayoutController.setUnlockHintRunning(false); } @VisibleForTesting void onUnlockHintStarted() { mKeyguardIndicationController.showActionToUnlock(); mScrimController.setExpansionAffectsAlpha(false); mNotificationStackScrollLayoutController.setUnlockHintRunning(true); } private boolean shouldUseDismissingAnimation() { return mBarState != StatusBarState.SHADE && (mKeyguardStateController.canDismissLockScreen() || !isTracking()); Loading Loading @@ -2989,7 +2944,7 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump 0 /* lengthDp - N/A */, 0 /* velocityDp - N/A */); mLockscreenGestureLogger .log(LockscreenUiEvent.LOCKSCREEN_LOCK_SHOW_HINT); startUnlockHintAnimation(); mKeyguardIndicationController.showActionToUnlock(); } } break; Loading Loading @@ -3399,7 +3354,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump ipw.print("mOverExpansion="); ipw.println(mOverExpansion); ipw.print("mExpandedHeight="); ipw.println(mExpandedHeight); ipw.print("mTracking="); ipw.println(mTracking); ipw.print("mHintAnimationRunning="); ipw.println(mHintAnimationRunning); ipw.print("mExpanding="); ipw.println(mExpanding); ipw.print("mSplitShadeEnabled="); ipw.println(mSplitShadeEnabled); ipw.print("mKeyguardNotificationBottomPadding="); Loading Loading @@ -4058,73 +4012,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump mView.removeCallbacks(mFlingCollapseRunnable); } @Override public boolean isUnlockHintRunning() { return mHintAnimationRunning; } /** * Phase 1: Move everything upwards. */ private void startUnlockHintAnimationPhase1(final Runnable onAnimationFinished) { float target = Math.max(0, getMaxPanelHeight() - mHintDistance); ValueAnimator animator = createHeightAnimator(target); animator.setDuration(250); animator.setInterpolator(Interpolators.FAST_OUT_SLOW_IN); animator.addListener(new AnimatorListenerAdapter() { private boolean mCancelled; @Override public void onAnimationCancel(Animator animation) { mCancelled = true; } @Override public void onAnimationEnd(Animator animation) { if (mCancelled) { setAnimator(null); onAnimationFinished.run(); } else { startUnlockHintAnimationPhase2(onAnimationFinished); } } }); animator.start(); setAnimator(animator); if (mFeatureFlags.isEnabled(Flags.MIGRATE_SPLIT_KEYGUARD_BOTTOM_AREA)) { final ViewPropertyAnimator mKeyguardRootViewAnimator = mKeyguardRootView.animate(); mKeyguardRootViewAnimator .translationY(-mHintDistance) .setDuration(250) .setInterpolator(Interpolators.FAST_OUT_SLOW_IN) .withEndAction(() -> mKeyguardRootViewAnimator .translationY(0) .setDuration(450) .setInterpolator(mBounceInterpolator) .start()) .start(); } else { final List<ViewPropertyAnimator> indicationAnimators = mKeyguardBottomArea.getIndicationAreaAnimators(); for (final ViewPropertyAnimator indicationAreaAnimator : indicationAnimators) { indicationAreaAnimator .translationY(-mHintDistance) .setDuration(250) .setInterpolator(Interpolators.FAST_OUT_SLOW_IN) .withEndAction(() -> indicationAreaAnimator .translationY(0) .setDuration(450) .setInterpolator(mBounceInterpolator) .start()) .start(); } } } private void setAnimator(ValueAnimator animator) { mHeightAnimator = animator; if (animator == null && mPanelUpdateWhenAnimatorEnds) { Loading @@ -4135,7 +4022,7 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump /** Returns whether a shade or QS expansion animation is running */ private boolean isShadeOrQsHeightAnimationRunning() { return mHeightAnimator != null && !mHintAnimationRunning && !mIsSpringBackAnimation; return mHeightAnimator != null && !mIsSpringBackAnimation; } /** Loading Loading @@ -4214,10 +4101,8 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump /** Called when the user performs a click anywhere in the empty area of the panel. */ private void onEmptySpaceClick() { if (!mHintAnimationRunning) { onMiddleClicked(); } } @VisibleForTesting boolean isClosing() { Loading Loading @@ -4816,11 +4701,6 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump return mStatusBarStateListener; } @VisibleForTesting boolean isHintAnimationRunning() { return mHintAnimationRunning; } private void onStatusBarWindowStateChanged(@StatusBarManager.WindowVisibleState int state) { if (state != WINDOW_STATE_SHOWING && mStatusBarStateController.getState() == StatusBarState.SHADE) { Loading Loading @@ -4909,12 +4789,11 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump mAnimatingOnDown = mHeightAnimator != null && !mIsSpringBackAnimation; mMinExpandHeight = 0.0f; mDownTime = mSystemClock.uptimeMillis(); if (mAnimatingOnDown && mClosing && !mHintAnimationRunning) { if (mAnimatingOnDown && mClosing) { cancelHeightAnimator(); mTouchSlopExceeded = true; mShadeLog.v("NotificationPanelViewController MotionEvent intercepted:" + " mAnimatingOnDown: true, mClosing: true, mHintAnimationRunning:" + " false"); + " mAnimatingOnDown: true, mClosing: true"); return true; } if (!mTracking || isFullyCollapsed()) { Loading
packages/SystemUI/src/com/android/systemui/shade/ShadeViewController.kt +0 −6 Original line number Diff line number Diff line Loading @@ -199,12 +199,6 @@ interface ShadeViewController { /** Animate to expanded shade after a delay in ms. Used for lockscreen to shade transition. */ fun transitionToExpandedShade(delay: Long) /** * Returns whether the unlock hint animation is running. The unlock hint animation is when the * user taps the lock screen, causing the contents of the lock screen visually bounce. */ val isUnlockHintRunning: Boolean /** @see ViewGroupFadeHelper.reset */ fun resetViewGroupFade() Loading
packages/SystemUI/src/com/android/systemui/shade/ShadeViewControllerEmptyImpl.kt +0 −1 Original line number Diff line number Diff line Loading @@ -73,7 +73,6 @@ class ShadeViewControllerEmptyImpl @Inject constructor() : ShadeViewController { return false } override fun transitionToExpandedShade(delay: Long) {} override val isUnlockHintRunning: Boolean = false override fun resetViewGroupFade() {} override fun setKeyguardTransitionProgress(keyguardAlpha: Float, keyguardTranslationY: Int) {} Loading
packages/SystemUI/src/com/android/systemui/statusbar/NotificationShelf.java +1 −1 Original line number Diff line number Diff line Loading @@ -776,7 +776,7 @@ public class NotificationShelf extends ActivatableNotificationView implements St } } else if (viewEnd >= shelfClipStart && (!mAmbientState.isUnlockHintRunning() || view.isInShelf()) && view.isInShelf() && (mAmbientState.isShadeExpanded() || (!view.isPinned() && !view.isHeadsUpAnimatingAway()))) { Loading