am b4ecbb36: am 07f63605: Fix issue #2549511 Crash while moving the installed app to Phone

This commit is contained in:
Dianne Hackborn
2010-03-31 11:20:24 -07:00
committed by Android Git Automerger

View File

@@ -119,6 +119,10 @@ public class InstalledAppDetails extends Activity implements View.OnClickListene
private Handler mHandler = new Handler() {
public void handleMessage(Message msg) {
// If the activity is gone, don't process any more messages.
if (isFinishing()) {
return;
}
switch (msg.what) {
case CLEAR_USER_DATA:
processClearMsg(msg);