###問題
NotificationListenerServiceで取得したPendingIntentをsendできるかどうか取得したいです。
実際にPendingIntentをsendしてみて、android.app.PendingIntent.CanceledExceptionを拾うという方法もあるのですが、それではPendingIntentがもしsendできれば、唐突に他アプリのActivityが開始されてしまうことになります。
なのでsendしてみる。という方法は無しです。
###コード
NotificationListenerServiceからPendingIntentを取得
Kotlin
1var pendingIntent: PendingIntent? = null 2 3override fun onNotificationPosted(sbn: StatusBarNotification?) { 4 super.onNotificationPosted(sbn) 5 if(sbn != null) pendingIntent = sbn.notification.contentIntent 6}
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。