首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

Activity 的多次调用有关问题

2012-09-22 
Activity 的多次调用问题Intent i new Intent(PushService.this, XmppPushActivity.class)Bundle bundl

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总不变呢。请大家指点一下。

热点排行