Made background updater more robust to state changes

am: 9bfba9c157

Change-Id: I32e762641b7efd9ce10f0b7d6b21b986c58c617e
This commit is contained in:
Selim Cinek
2016-08-23 19:09:35 +00:00
committed by android-build-merger

View File

@@ -1961,9 +1961,9 @@ public class NotificationStackScrollLayout extends ViewGroup
}
private void applyCurrentBackgroundBounds() {
if (!mFadingOut) {
mScrimController.setExcludedBackgroundArea(mCurrentBounds);
}
mScrimController.setExcludedBackgroundArea(
mFadingOut || mParentFadingOut || mAmbientState.isDark() ? null
: mCurrentBounds);
invalidate();
}
@@ -3839,11 +3839,7 @@ public class NotificationStackScrollLayout extends ViewGroup
}
private void updateFadingState() {
if (mFadingOut || mParentFadingOut || mAmbientState.isDark()) {
mScrimController.setExcludedBackgroundArea(null);
} else {
applyCurrentBackgroundBounds();
}
applyCurrentBackgroundBounds();
updateSrcDrawing();
}