如果我有一个由用户关闭的活动(用户在家中按下以便应用程序仍处于应用程序堆栈中)
然后他收到通知,当他按下它时,我开始一项活动
现在相同的活动被打开两次.
我怎样才能防止这种情况发生?
我的代码:
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, MainActivity.class), PendingIntent.FLAG_UPDATE_CURRENT);notificationmanager mnotificationmanager = (notificationmanager) this.getSystemService(Context.NOTIFICATION_SERVICE);NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this) .setSmallicon(R.drawable.logo) .setContentTitle("Title") .setStyle(new NotificationCompat.BigTextStyle().bigText(msg)) .setautoCancel(true) .setlights(GCMSIntentService.PURPLE, 500, 500) .setSound(ringtoneManager.getDefaultUri(ringtoneManager.TYPE_NOTIFICATION)) .setContentText(msg);mBuilder.setContentIntent(contentIntent);mnotificationmanager.notify(1, mBuilder.build());
解决方法:
androID:launchMode="singleTask"
在清单中,
用它作为你的意图的标志.
以上是内存溢出为你收集整理的android – 按通知会两次打开相同的活动全部内容,希望文章能够帮你解决android – 按通知会两次打开相同的活动所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)