Merge "Tint task bar based on sampling of colors in the area" into sc-v2-dev

This commit is contained in:
Tracy Zhou
2021-08-18 18:32:35 +00:00
committed by Android (Google) Code Review
7 changed files with 128 additions and 6 deletions

View File

@@ -285,6 +285,7 @@ public class TaskbarStashController {
@Override
public void onAnimationStart(Animator animation) {
mIsStashed = isStashed;
onIsStashed(mIsStashed);
}
@Override
@@ -326,4 +327,8 @@ public class TaskbarStashController {
animateForward ? UNSTASHED_TASKBAR_HANDLE_HINT_SCALE : 1)
.setDuration(TASKBAR_HINT_STASH_DURATION).start();
}
private void onIsStashed(boolean isStashed) {
mControllers.stashedHandleViewController.onIsStashed(isStashed);
}
}