我想从我的机器人佩戴通知中删除ContentIntent(我有一个单独的动作,我想在手表中打开应用程序时使用),但仍然保留在掌上电脑上。以下代码设置内容意图,然后最终将其删除。有谁知道怎么做?
mainNotification.setContentIntent(contentIntent)
// wearable extender to add 2nd page and extend the main notification
dualNotification =
new NotificationCompat.WearableExtender()
.extend(mainNotification)
.extend(wearableExtendedNotification)
.setContentIntent(null) // thisremoves content intent that was set before
;
我也尝试使用setContentAction(),它可以正常工作,但它会在可穿戴设备上查找第一张通知卡,因此文本无法读取。