我正在应用程序中创建以下通知:
int notificationId = 001;
NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.icon)
.setContentTitle(StationUtils.getStationModeString("My Notification")
.setContentText("Good Notification");
NotificationManager mNotifyMgr =
(NotificationManager) getSystemService(NOTIFICATION_SERVICE);
mNotifyMgr.notify(notificationId, notificationBuilder.build());
NotificationManagerCompat notificationManager =
NotificationManagerCompat.from(MainActivity.this);
notificationManager.notify(notificationId, notificationBuilder.build());
它出现在我的手机上,但不出现在我的手表连接到我的手机上。安卓穿戴系统所需的代码中是否缺少某些内容?它必须是一个发布签名的构建吗?我检查了设置,手表确实可以访问通知。
谢谢
最佳答案
如果您使用的是android 5.0,请确保中断设置未设置为"None"
。
Silence your device with "Do not disturb"
关于android - 通知未出现在 watch 上,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40942283/