Merge "Invalidate scrim throughout animation from overlay to workspace." into ub-launcher3-calgary
diff --git a/src/com/android/launcher3/LauncherStateTransitionAnimation.java b/src/com/android/launcher3/LauncherStateTransitionAnimation.java
index 8855cf0..c5ae9da 100644
--- a/src/com/android/launcher3/LauncherStateTransitionAnimation.java
+++ b/src/com/android/launcher3/LauncherStateTransitionAnimation.java
@@ -697,6 +697,17 @@
itemsAlpha.setInterpolator(decelerateInterpolator);
animation.play(itemsAlpha);
+ // Invalidate the scrim throughout the animation to ensure the highlight
+ // cutout is correct throughout.
+ ValueAnimator invalidateScrim = ValueAnimator.ofFloat(0f, 1f);
+ invalidateScrim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
+ @Override
+ public void onAnimationUpdate(ValueAnimator animation) {
+ mLauncher.getDragLayer().invalidateScrim();
+ }
+ });
+ animation.play(invalidateScrim);
+
if (material) {
// Animate the all apps button
float finalRadius = pCb.getMaterialRevealViewStartFinalRadius();