Merge "Exclude TYPE_PRIVATE_PRESENTATION app visiblity"
This commit is contained in:
committed by
Android (Google) Code Review
commit
cacb978b2a
@@ -3409,7 +3409,10 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP
|
||||
}
|
||||
// Exclude toast because legacy apps may show toast window by themselves, so the misused
|
||||
// apps won't always be considered as foreground state.
|
||||
if (mAttrs.type >= FIRST_SYSTEM_WINDOW && mAttrs.type != TYPE_TOAST) {
|
||||
// Exclude private presentations as they can only be shown on private virtual displays and
|
||||
// shouldn't be the cause of an app be considered foreground.
|
||||
if (mAttrs.type >= FIRST_SYSTEM_WINDOW && mAttrs.type != TYPE_TOAST
|
||||
&& mAttrs.type != TYPE_PRIVATE_PRESENTATION) {
|
||||
mWmService.mAtmService.mActiveUids.onNonAppSurfaceVisibilityChanged(mOwnerUid, shown);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user