Remove workspace fade from ALL_APPS > NORMAL transition.

This applies to phones only for the one-off transition (Home gesture or
swipe back. See before and after videos in the bug.

Bug: 234359814
Test: manual
Change-Id: I8f4fc9ec40687b641a721bd28b32fcf50514861f
This commit is contained in:
Luca Zuccarini
2022-05-31 13:50:28 +00:00
parent 192b3c3118
commit a36af25ab7
2 changed files with 6 additions and 0 deletions

View File

@@ -157,6 +157,9 @@ public class AllAppsSwipeController extends AbstractStateChangeTouchController {
config.setInterpolator(ANIM_SCRIM_FADE, ALLAPPS_STAGGERED_FADE_LATE_RESPONDER);
config.setInterpolator(ANIM_ALL_APPS_FADE, isTablet
? FINAL_FRAME : ALLAPPS_STAGGERED_FADE_EARLY_RESPONDER);
if (!isTablet) {
config.setInterpolator(ANIM_WORKSPACE_FADE, INSTANT);
}
}
/**