Merge "Exclude finishing ActivityRecord when checking overlay" into tm-qpr-dev
This commit is contained in:
@@ -5818,8 +5818,8 @@ final class ActivityRecord extends WindowToken implements WindowManagerService.A
|
||||
// in untrusted mode. Traverse bottom to top with boundary so that it will only check
|
||||
// activities above this activity.
|
||||
final ActivityRecord differentUidOverlayActivity = getTask().getActivity(
|
||||
a -> a.getUid() != getUid(), this /* boundary */, false /* includeBoundary */,
|
||||
false /* traverseTopToBottom */);
|
||||
a -> !a.finishing && a.getUid() != getUid(), this /* boundary */,
|
||||
false /* includeBoundary */, false /* traverseTopToBottom */);
|
||||
return differentUidOverlayActivity != null;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user