我正在使用LG Watch Urban。我已成功將手錶與手機連接,手錶正在顯示來自gmail,linkedin和其他應用程序的所有通知。我寫了一個移動應用程序,發送通知。但是這個通知不會出現在手錶中,但通知是通過手機發送的。我不知道這是什麼原因。我使用下面的代碼,只有我的手機應用程序通知不會出現在手錶Android Wear
NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_adb_black_24dp)
.setContentTitle("Title")
.setContentText("Hello World");
NotificationManagerCompat notificationManager =
NotificationManagerCompat.from(this);
notificationManager.notify(notificationId,notificationBuilder.build());
我驗證了伴侶Android穿應用程序,沒有我的移動應用程序在被阻止的應用程序列表中。任何幫助將不勝感激。