Debug for bug 18017409
Log adding and removing windows. Log activity state changes. Change-Id: I544be89ff9af6b13ffde70dedec291793b46a420
This commit is contained in:
@@ -120,7 +120,7 @@ public final class ActivityStackSupervisor implements DisplayListener {
|
||||
static final boolean DEBUG_RELEASE = DEBUG || false;
|
||||
static final boolean DEBUG_SAVED_STATE = DEBUG || false;
|
||||
static final boolean DEBUG_SCREENSHOTS = DEBUG || false;
|
||||
static final boolean DEBUG_STATES = DEBUG || false;
|
||||
static final boolean DEBUG_STATES = DEBUG || true;
|
||||
static final boolean DEBUG_VISIBLE_BEHIND = DEBUG || false;
|
||||
|
||||
public static final int HOME_STACK_ID = 0;
|
||||
|
||||
@@ -2509,9 +2509,8 @@ public class WindowManagerService extends IWindowManager.Stub
|
||||
}
|
||||
mInputMonitor.updateInputWindowsLw(false /*force*/);
|
||||
|
||||
if (localLOGV) Slog.v(
|
||||
TAG, "New client " + client.asBinder()
|
||||
+ ": window=" + win);
|
||||
if (true || localLOGV) Slog.v(TAG, "addWindow: New client " + client.asBinder()
|
||||
+ ": window=" + win + " Callers=" + Debug.getCallers(5));
|
||||
|
||||
if (win.isVisibleOrAdding() && updateOrientationFromAppTokensLocked(false)) {
|
||||
reportNewConfig = true;
|
||||
@@ -2675,7 +2674,8 @@ public class WindowManagerService extends IWindowManager.Stub
|
||||
mPolicy.removeWindowLw(win);
|
||||
win.removeLocked();
|
||||
|
||||
if (DEBUG_ADD_REMOVE) Slog.v(TAG, "removeWindowInnerLocked: " + win);
|
||||
if (true || DEBUG_ADD_REMOVE) Slog.v(TAG, "removeWindowInnerLocked: " + win +
|
||||
" Callers=" + Debug.getCallers(5));
|
||||
mWindowMap.remove(win.mClient.asBinder());
|
||||
if (win.mAppOp != AppOpsManager.OP_NONE) {
|
||||
mAppOps.finishOp(win.mAppOp, win.getOwningUid(), win.getOwningPackage());
|
||||
|
||||
Reference in New Issue
Block a user