标签: android android-notifications wear-os android-wear-notification
有没有办法阻止在Android Wear设备上显示通知?我知道可以使用setOngoing(true),但我不希望我的通知正在进行中。
setOngoing(true)
答案 0 :(得分:3)
您应该致电setLocalOnly(true)上的NotificationCompat.Builder。
setLocalOnly(true)
NotificationCompat.Builder
来自文档
设置此通知是否不应与其他通知桥接 设备
您可以阅读更多here