我正在使用 LG Watch Urban。我已成功将手表与手机连接,手表显示来自 gmail、linkedin 和其他应用程序的所有通知。我写了一个移动应用程序来发送通知。但是这个通知并没有出现在手表上,而是通知出现在手机中。我不知道这是什么原因。我用下面的代码,
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());
我验证了 Companion Android wear 应用程序在被阻止的应用程序列表中没有我的移动应用程序。任何帮助将不胜感激。