OSDN Git Service

Do not go through a layout if visibility is GONE
authorCraig Mautner <cmautner@google.com>
Thu, 23 Oct 2014 20:16:53 +0000 (13:16 -0700)
committerCraig Mautner <cmautner@google.com>
Mon, 27 Oct 2014 21:46:27 +0000 (14:46 -0700)
commitfa3515bd0d62bc55153f26cd9f0b93e077631514
tree1018b38784c5dae4995de3b21107672f55d6f82b
parenta9a550dd8e87b33979670cf856838ba227500547
Do not go through a layout if visibility is GONE

An unnecessary layout based on dimensions changing catches up
with us later when the next layout doesn't occur.

In this case
we layed out the Settings panel because visibility changed from
visible to GONE and the requested width/height didn't match the
current window width height. When the visibility changed back
to visible the dimensions matched and another layout was not
performed.

This fix delays the layout until the window becomes visible again.

Fixes bug 17681754.

Change-Id: I0a3ff9479dca93e78c5d3a3df40faceffc10ecbd
services/core/java/com/android/server/wm/WindowManagerService.java