我需要持续通知永不停止的服务。目前,我有这个,但我没有看到任何与通知相关的内容或意图。通知出现"应用程序正在运行 - 点按以获取更多信息或停止应用程序"点击后,我可以访问我可以卸载/强制停止的应用信息页面。我在代码中做错了什么:
Intent notificationIntent = new Intent(this, MyActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
Notification notification = new NotificationCompat.Builder(this, CHANNEL_ID)
.setContentTitle(APP_NAME)
.setContentText(NOTIFICATION_CONTENT)
.setContentIntent(pendingIntent)
.setOngoing(true)
.build();
notification.flags = notification.flags | Notification.FLAG_NO_CLEAR;
startForeground(NOTIFICATION_ID, notification);