Merge "Exclude finishing ActivityRecord when checking overlay" into tm-qpr-dev am: c5bfa99295

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/20064087

Change-Id: Ideffd0a5a5d706eb317232dd8e4a440538ce911d
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Chris Li
2022-10-10 02:47:16 +00:00
committed by Automerger Merge Worker

View File

@@ -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 // in untrusted mode. Traverse bottom to top with boundary so that it will only check
// activities above this activity. // activities above this activity.
final ActivityRecord differentUidOverlayActivity = getTask().getActivity( final ActivityRecord differentUidOverlayActivity = getTask().getActivity(
a -> a.getUid() != getUid(), this /* boundary */, false /* includeBoundary */, a -> !a.finishing && a.getUid() != getUid(), this /* boundary */,
false /* traverseTopToBottom */); false /* includeBoundary */, false /* traverseTopToBottom */);
return differentUidOverlayActivity != null; return differentUidOverlayActivity != null;
} }