gpt4 book ai didi

android - 我不希望通知管理器打开 Activity

转载 作者:太空狗 更新时间:2023-10-29 15:55:46 24 4
gpt4 key购买 nike

我不希望通知管理器(状态栏)打开一个 Activity 。相反,当单击通知时,它只是被取消,并且什么也不会发生。

最佳答案

final NotificationManager notificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
final Notification notification = new Notification(R.drawable.icon,"A New Message!",System.currentTimeMillis());

notification.defaults=Notification.FLAG_ONLY_ALERT_ONCE+Notification.FLAG_AUTO_CANCEL;
Intent notificationIntent = new Intent(this, null);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,notificationIntent, 0);

notification.setLatestEventInfo(AndroidNotifications.this, title,message, pendingIntent);
notificationManager.notify(NOTIFICATION_ID, notification);

与其在 intent 中传递类,不如传递 null 或使用 intent() 默认构造函数。如果有助于欣赏。

关于android - 我不希望通知管理器打开 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10794880/

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