Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以防止在 Android Wear 设备上显示通知?我知道使用是可能的,setOngoing(true)但我不希望我的通知持续进行。
setOngoing(true)
你应该打电话setLocalOnly(true)给NotificationCompat.Builder.
setLocalOnly(true)
NotificationCompat.Builder
从文档
设置此通知是否不应桥接到其他设备。
你可以在这里阅读更多