如果已经打开新活动,我该如何强制该应用不打开新活动?
将 Parse ParsePush
与ParsePushBroadcastReceiver
一起使用。
@Override
protected void onPushOpen(Context context, Intent intent) {
if (App.isRunning) {
// do nothing
} else {
// open app
}
}
答案 0 :(得分:4)
我认为清单中唯一的方法是launchMode =“singleInstance”,因为从通知启动会创建一个新任务。