我正在启动一个前台服务,该服务使用HandlerThread来执行一些长时间运行的任务。
它可以正常工作,但是,通知不会显示我的标题或内容(它显示“ xxx正在运行”,请点击以获取更多信息或停止该应用程序。)。我现在的目标是Android 10 < / strong>
该服务从我的主要活动开始
Log.w(TAG, "startServiceCalled")
Intent(this, MyService::class.java).also { intent ->
startForegroundService(intent)
}
在服务的onCreate
回调中,我将服务放置在这样的前台
val pendingIntent: PendingIntent =
Intent(this, MainActivity::class.java).let { notificationIntent ->
PendingIntent.getActivity(this, 0, notificationIntent, 0)
}
val notification: Notification = NotificationCompat.Builder(applicationContext, MainActivity.RECORDING_NOTIFICATION_CHANNEL.id)
.setOngoing(true)
.setContentTitle("My Custom App")
.setContentText("MyService Ready")
.setContentIntent(pendingIntent)
.build()
startForeground(NOTIFICATIION_ID, notification, ServiceInfo.FOREGROUND_SERVICE_TYPE_MANIFEST);
顺便说一句:我也在使用Flutter,所以我的主要活动是扩展FlutterActivity
编辑:通知通道是这样创建的
val RECORDING_NOTIFICATION_CHANNEL = NotificationChannel("com.example.notification", "Service notifications", NotificationManager.IMPORTANCE_DEFAULT).apply {
description = "Provides information about the service"
}
val notificationManager = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
notificationManager.createNotificationChannel(RECORDING_NOTIFICATION_CHANNEL);
答案 0 :(得分:1)
我发现了问题:
您需要设置一个有效的小图标。否则,通知显示将在startForeground期间静默失败。
val notification: Notification = NotificationCompat.Builder(applicationContext, MainActivity.RECORDING_NOTIFICATION_CHANNEL.id)
.setOngoing(true)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("MyService")
.setContentText("Recording Service Ready")
.setContentIntent(pendingIntent)
.build()
我在尝试使用NotificationManager.notify手动显示通知时发现了这一点。