初めに
今回は、遷移情報を持った通知の作成方法を紹介していきます
本文
private fun sendNotification(
title: String,
body: String,
deeplink: Deeplink?
) {
val intent = Intent(this, MainActivity::class.java)
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
deeplink?.let {
intent.putDeepLink(it)
}
val pendingIntent = PendingIntent.getActivity(
this,
0,
intent,
PendingIntent.FLAG_ONE_SHOT or PendingIntent.FLAG_IMMUTABLE
)
val channelId = "channelId"
val notificationBuilder = NotificationCompat.Builder(this, channelId)
.setSmallIcon(R.drawable.ic_messaging_icon)
.setContentTitle(title)
.setContentText(body)
.setAutoCancel(true)
.setContentIntent(pendingIntent)
val notificationManager = getSystemService<NotificationManager>().requireNotNull()
val channel = NotificationChannel(
channelId,
"お知らせ",
NotificationManager.IMPORTANCE_DEFAULT
)
notificationManager.createNotificationChannel(channel)
notificationManager.notify(0, notificationBuilder.build())
}
大事なのは
val intent = Intent(this, MainActivity::class.java)
deeplink?.let {
intent.putDeepLink(it)
}
この部分になります
ここでMain Activity
のintent情報にDeep Link
の情報を詰め込みます
最後に
今回は通知の作成方法を紹介しました
前回の記事は下記になります
https://qiita.com/ryuji_sato/items/db6de3e447f83726a732
次の記事は下記になります
https://qiita.com/ryuji_sato/items/7e1a4289180922663782