Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show notification on Android Wear device only

Is there a way to show a notification using NotificationManagerCompat on a wearable only and not in the normal notification area on the phone?

like image 817
user1379811 Avatar asked Aug 28 '14 10:08

user1379811


1 Answers

Instead of creating a notification on the phone, send a message from the phone to the wearable using the Messaging API. Then when you receive that message on the wearable, use the same notification API in your wearable app code (instead of in the phone app) - this will raise a notification on the wearable.

like image 115
eshayne Avatar answered Nov 07 '22 09:11

eshayne