仅在 phone 上显示通知(不在 Android Wear 上显示)
Show notification only on phone (not on Android Wear)
有什么方法可以防止通知显示在 Android Wear 设备上?我知道使用 setOngoing(true)
是可能的,但我不希望我的通知持续存在。
您应该在 NotificationCompat.Builder
上致电 setLocalOnly(true)
。
来自文档
Set whether or not this notification should not bridge to other
devices.
你可以阅读更多here
有什么方法可以防止通知显示在 Android Wear 设备上?我知道使用 setOngoing(true)
是可能的,但我不希望我的通知持续存在。
您应该在 NotificationCompat.Builder
上致电 setLocalOnly(true)
。
来自文档
Set whether or not this notification should not bridge to other devices.
你可以阅读更多here