Merge "Fix issue #5636525: ANR observed in setup wizard after changing language" into ics-mr1

This commit is contained in:
Dianne Hackborn
2011-11-29 15:28:41 -08:00
committed by Android (Google) Code Review

View File

@ -2720,6 +2720,10 @@ public final class ActivityManagerService extends ActivityManagerNative
}
if (!r.finishing) {
Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
System.identityHashCode(r),
r.task.taskId, r.shortComponentName,
"proc died without state saved");
}
r.makeFinishing();
mMainStack.mHistory.remove(i);
@ -13596,6 +13600,7 @@ public final class ActivityManagerService extends ActivityManagerNative
adj = ProcessList.PERCEPTIBLE_APP_ADJ;
app.adjType = "stopping";
}
app.hidden = false;
app.foregroundActivities = true;
}
}