Reset status bar in keyguard, fix MU status bar bug.

Two things going on here, status bar disabled flags need to be reset
on user switch.  Also make status bar's internal disable-record lookup
multi-user aware.

Bug:7278793
Change-Id: I1d7088d956a065330736da4c09cc1874c528c133
This commit is contained in:
John Spurlock
2012-10-04 14:51:51 -04:00
parent ebf7e2851c
commit 4e6922d89e
2 changed files with 2 additions and 1 deletions

View File

@@ -291,6 +291,7 @@ public class KeyguardViewMediator {
public void onUserSwitched(int userId) {
// Note that the mLockPatternUtils user has already been updated from setCurrentUser.
synchronized (KeyguardViewMediator.this) {
adjustStatusBarLocked();
resetStateLocked(true);
}
// We should always go back to the locked state when a user

View File

@@ -544,7 +544,7 @@ public class StatusBarManagerService extends IStatusBarService.Stub
int i;
for (i=0; i<N; i++) {
DisableRecord t = mDisableRecords.get(i);
if (t.token == token) {
if (t.token == token && t.userId == userId) {
tok = t;
break;
}