Don't show the shade background for heads up notifications
This looked weird when dismissing. Change-Id: I9c4256a4c8792c4ff81d3cf1e34c45591853c206 Fixes: 29462609
This commit is contained in:
@@ -152,8 +152,10 @@ public class StackScrollAlgorithm {
|
||||
float newYTranslation = state.yTranslation;
|
||||
float newHeight = state.height;
|
||||
float newNotificationEnd = newYTranslation + newHeight;
|
||||
|
||||
if (newYTranslation < previousNotificationEnd) {
|
||||
boolean isHeadsUp = (child instanceof ExpandableNotificationRow)
|
||||
&& ((ExpandableNotificationRow) child).isPinned();
|
||||
if (newYTranslation < previousNotificationEnd && ambientState.isShadeExpanded()
|
||||
&& !isHeadsUp) {
|
||||
// The previous view is overlapping on top, clip!
|
||||
float overlapAmount = previousNotificationEnd - newYTranslation;
|
||||
state.clipTopAmount = (int) overlapAmount;
|
||||
|
||||
Reference in New Issue
Block a user