implementation "com.android.support:support-compat:28.0.0"
val mBuilder = NotificationCompat.Builder(this.context, "my-app")
.setSmallIcon(R.drawable.notification_icon_background)
.setContentTitle("title")
.setContentText("content text")
.setPriority(NotificationCompat.PRIORITY_DEFAULT)
val notificationManager = NotificationManagerCompat.from(context)
val notificationId = 1234
notificationManager.notify(notificationId, mBuilder.build())
Create a BroadcastReceiver to handle the action
class PushReceiver : BroadcastReceiver() {
override fun onReceive(context: Context, intent: Intent) {
val notificationId = 1234
val action = intent.action[0]
val notificationManager = NotificationManagerCompat.from(context)
notificationManager.cancel(notificationId)
}
}
Add the action button
val action = Intent(context, PushReceiver::class.java)
action.action = "my-action"
// 0 = request code... should it be unique?
val actionIntent = PendingIntent.getBroadcast(context, 0, action, PendingIntent.FLAG_UPDATE_CURRENT)
val mBuilder = NotificationCompat.Builder(this.context, "my-app")
.addAction(R.drawable.abc_btn_check_material, "action button", actionIntent)
https://developer.android.com/training/notify-user/build-notification
← Activities Scheduling →