diff options
author | Tony Wickham <twickham@google.com> | 2021-10-21 10:45:20 -0700 |
---|---|---|
committer | Tony Wickham <twickham@google.com> | 2021-10-25 13:44:09 -0700 |
commit | 232e9a463174bf55eb601b5b92c52b0dca63d382 (patch) | |
tree | e82c457fc35c6d02e08b81f2d3acfa388be72c7a /quickstep/src/com/android/launcher3/taskbar/TaskbarViewController.java | |
parent | d238074c39ad27b03ecf2c97b2d99295f83d9829 (diff) |
Hide taskbar background when notification shade is expanded
- In 3 button mode, don't hide the background but do ensure nav buttons are translated down when swiping to notificaitons from the home screen
Test: swipe down notifications, background hides in 0 button mode but not in 3 button mode
Fixes: 199163951
Change-Id: Ic70adc7d67b2ab7c92a2d5d846b9b259d1bd7bfc
Diffstat (limited to 'quickstep/src/com/android/launcher3/taskbar/TaskbarViewController.java')
-rw-r--r-- | quickstep/src/com/android/launcher3/taskbar/TaskbarViewController.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/quickstep/src/com/android/launcher3/taskbar/TaskbarViewController.java b/quickstep/src/com/android/launcher3/taskbar/TaskbarViewController.java index d14622b2b3..6a936ab73d 100644 --- a/quickstep/src/com/android/launcher3/taskbar/TaskbarViewController.java +++ b/quickstep/src/com/android/launcher3/taskbar/TaskbarViewController.java @@ -116,16 +116,6 @@ public class TaskbarViewController { } /** - * Should be called when the notification shade is expanded, so we can hide taskbar icons as - * well. Note that we are animating icons to appear / disappear. - */ - public void setNotificationShadeIsExpanded(boolean isNotificationShadeExpanded) { - mTaskbarIconAlpha.getProperty(ALPHA_INDEX_NOTIFICATION_EXPANDED) - .animateToValue(isNotificationShadeExpanded ? 0 : 1) - .start(); - } - - /** * Should be called when the recents button is disabled, so we can hide taskbar icons as well. */ public void setRecentsButtonDisabled(boolean isDisabled) { |