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
|
// 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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user