Merge "Skip the target activity when settings state to disallow sysui flags"
This commit is contained in:
committed by
Android (Google) Code Review
commit
be45bbdca1
@@ -208,7 +208,10 @@ public class RecentsAnimationController implements DeathRecipient {
|
||||
try {
|
||||
synchronized (mService.getWindowManagerLock()) {
|
||||
for (int i = mPendingAnimations.size() - 1; i >= 0; i--) {
|
||||
mPendingAnimations.get(i).mTask.setCanAffectSystemUiFlags(behindSystemBars);
|
||||
final Task task = mPendingAnimations.get(i).mTask;
|
||||
if (task.getActivityType() != mTargetActivityType) {
|
||||
task.setCanAffectSystemUiFlags(behindSystemBars);
|
||||
}
|
||||
}
|
||||
mService.mWindowPlacerLocked.requestTraversal();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user