1

我正在尝试实现一种方法来检测发送到 android 可穿戴设备的通知。

谷歌搜索后,我发现无法在可穿戴设备上使用 notificationListenerService。

在当前的实现中,我已经在移动手持设备上实现了 notificationListenerService 并且正在使用 DataLayer 来发送通知。

我的问题是:

使用 notificationListener,它会检测出现的所有内容。是否有可靠的方法来检测哪些通知将发送到可穿戴设备?例如,我不希望 twilight 或其他未发送到可穿戴设备的东西通过 dataLayer 发送

4

1 回答 1

0

是的,有可能,只需通过公开的FLAG_LOCAL_ONLYNotifications过滤您的信息。它由设置,如果为真,则通知不会发送到 Wear 设备。NotificationListenerService.setLocalOnly()

于 2015-02-16T14:34:47.033 回答