OSDN Git Service

Defer updating dim layers if layout is deferred
authorJorim Jaggi <jjaggi@google.com>
Fri, 4 Aug 2017 16:06:56 +0000 (18:06 +0200)
committerJorim Jaggi <jjaggi@google.com>
Fri, 4 Aug 2017 16:25:11 +0000 (18:25 +0200)
commit1f83308556cb5bb0df3fb64f03b9b68f0aad6c0d
tree4d36d7c685fdcc5d8c32d7daf31cf612bf2f3592
parentc0c9324fcb03c85ef7bed2d997c441119823d31c
Defer updating dim layers if layout is deferred

When a translucent activity is on top of launcher and the activity
is animated away, we update the layers too early in case the
activity window is dimming. After starting the launcher, launcher
is on top of activity already in the hierarchy, but we haven't
started the transtion yet which would prevent the launcher to be
visible on top of activity by the anim layer adjustment.

To fix this, we prevent updating the layers if layout is currently
deferred.

Ideally we would do the whole activityStart in one surface
transaction but that's way too risky at this point.

Test: Open translucent dimming activity over launcher, press home,
ensure no flickering.
Test: go/wm-smoke

Change-Id: I72b8f5f555b555646121355c19cf7813e4f8d7a3
Fixes: 64206558
services/core/java/com/android/server/wm/WindowState.java
services/core/java/com/android/server/wm/WindowSurfacePlacer.java