Activity 的多次调用有关问题

Activity 的多次调用问题
Intent i = new Intent(PushService.this, XmppPushActivity.class);
Bundle bundle = new Bundle();
bundle.putString("from", from);
bundle.putString("message", message);
i.putExtras(bundle);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(i);

XmppPushActivity 里面在onCreate()里面写了个Diolog。

很奇怪,为什么多次调用的时候XmppPushActivity的时候里面的Dialog总不变呢。请大家指点一下。