【发布时间】:2015-07-18 13:01:49
【问题描述】:
我正在尝试使用此代码按下通知时为 Activity 重新创建回栈:
Intent firstIntent = new Intent(this, First.class);
Intent secondIntent = new Intent(this, Second.class);
TaskStackBuilder stackBuilder = TaskStackBuilder.create(this);
stackBuilder.addNextIntent(firstIntent);
stackBuilder.addNextIntent(secondIntent);
PendingIntent pendingIntent = stackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT);
Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle(fromName)
.setContentText(message)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0 ,notificationBuilder.build());
但它不起作用。当我按下通知时,第二个活动已打开但按下后退按钮,活动已完成,而我想返回第一个活动。
在 AndroidManifest 中设置 parentActivityName 不起作用。
怎么了?
谢谢
【问题讨论】:
-
你的 build.gradle 中的 minSdkVersion 是什么?
标签: android android-activity android-notifications back-stack