gpt4 book ai didi

android - 在关闭的应用程序中收到通知时转到特定 Activity ?

转载 作者:行者123 更新时间:2023-11-29 00:57:10 24 4
gpt4 key购买 nike

下面是我的代码,它在应用程序处于后台时完美运行,但当应用程序不在后台时它会进入启动画面;

 Intent resultIntent = null;
if (flag.equalsIgnoreCase("refer_friend")) {
resultIntent = new Intent(getApplicationContext(), MyLoyaltyHistoryActivity.class);
resultIntent.putExtra("key", "2");
resultIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
}

TaskStackBuilder taskStackBuilder = TaskStackBuilder.create(getApplicationContext());
taskStackBuilder.addNextIntentWithParentStack(resultIntent);

PendingIntent resultPendingIntent = PendingIntent.getActivity(getApplicationContext(),
0 /* Request code */, resultIntent,
PendingIntent.FLAG_UPDATE_CURRENT);

mBuilder = new NotificationCompat.Builder(getApplicationContext());
mBuilder.setSmallIcon(R.drawable.yu_android);
mBuilder.setContentTitle(title)
.setContentText(message)
.setAutoCancel(false)
.setSound(Settings.System.DEFAULT_NOTIFICATION_URI)
.setContentIntent(resultPendingIntent);

mNotificationManager = (NotificationManager) getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
mBuilder.setSmallIcon(R.drawable.yu_android);
} else {
mBuilder.setSmallIcon(R.drawable.yu_android);
}


if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
int importance = NotificationManager.IMPORTANCE_MAX;
NotificationChannel notificationChannel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, "NOTIFICATION_CHANNEL_NAME", importance);
notificationChannel.enableLights(true);
notificationChannel.setLightColor(Color.RED);
notificationChannel.enableVibration(true);
notificationChannel.setVibrationPattern(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400});
assert mNotificationManager != null;
mBuilder.setChannelId(NOTIFICATION_CHANNEL_ID);
mNotificationManager.createNotificationChannel(notificationChannel);
}
assert mNotificationManager != null;
mNotificationManager.notify(0 /* Request Code */, mBuilder.build());

最佳答案

最后我通过使用 TaskStackBuilder

得到了答案

在下面的代码中使用;

  Intent resultIntent = null;

if (flag.equalsIgnoreCase("refer_friend")) {
resultIntent = new Intent(getApplicationContext(), ReferFreindLoyaltyActivity.class);
resultIntent.putExtra("back_flag", "1");
resultIntent.putExtra("refer_a_freind", "1");
}

TaskStackBuilder taskStackBuilder = TaskStackBuilder.create(getApplicationContext());
taskStackBuilder.addNextIntentWithParentStack(resultIntent);
PendingIntent resultPendingIntent = taskStackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT);

mBuilder = new NotificationCompat.Builder(getApplicationContext());
mBuilder.setSmallIcon(R.drawable.yu_android);
mBuilder.setContentTitle(title)
.setContentText(message)
.setSound(Settings.System.DEFAULT_NOTIFICATION_URI)
.setContentIntent(resultPendingIntent)
.setAutoCancel(true);

mNotificationManager = (NotificationManager) getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
mBuilder.setSmallIcon(R.drawable.yu_android);
} else {
mBuilder.setSmallIcon(R.drawable.yu_android);
}


if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
int importance = NotificationManager.IMPORTANCE_MAX;
NotificationChannel notificationChannel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, "NOTIFICATION_CHANNEL_NAME", importance);
notificationChannel.enableLights(true);
notificationChannel.setLightColor(Color.RED);
notificationChannel.enableVibration(true);
notificationChannel.setVibrationPattern(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400});
assert mNotificationManager != null;
mBuilder.setChannelId(NOTIFICATION_CHANNEL_ID);
mNotificationManager.createNotificationChannel(notificationChannel);
}
assert mNotificationManager != null;
mNotificationManager.notify(0 /* Request Code */, mBuilder.build());

关于android - 在关闭的应用程序中收到通知时转到特定 Activity ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53833555/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com