Может ли нажатие на название приложения в уведомлении открыть намерение?
Прямо сейчас, только когда я нажимаю на область содержимого, я могу открыть приложение / намерение.
Ниже приведен мой код уведомления.
val notificationIntent = Intent(this, MainActivity::class.java)
notificationIntent.action = ACTION_MAIN
notificationIntent.addCategory(Intent.CATEGORY_LAUNCHER)
notificationIntent.flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT or Intent.FLAG_ACTIVITY_SINGLE_TOP
val pendingIntent = PendingIntent.getActivity(this, 1, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT)
val notification = NotificationCompat.Builder(this, NOTIFICATION_CHANNEL_ID)
.setSmallIcon(R.drawable.ic_logo_path)
.setContentIntent(pendingIntent)
.setOngoing(true)
.build()
startForeground(NOTIFICATION_ID_LOCATION_SERVICE, notification)