我创建了一个简单的应用程序。哪个是手持设备和可穿戴设备的通知。以下是创建通知的代码
@Override
public void onClick(View v) {
int notificationId = 001;
// Build intent for notification content
Intent viewIntent = new Intent(this, MainActivity.class);
PendingIntent viewPendingIntent =
PendingIntent.getActivity(this, 0, viewIntent, 0);
NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("title")
.setContentText("Location")
.setContentIntent(viewPendingIntent);
// Get an instance of the NotificationManager service
NotificationManagerCompat notificationManager =
NotificationManagerCompat.from(this);
// Build the notification and issues it with notification manager.
notificationManager.notify(notificationId, notificationBuilder.build());
}
我可以在手机上看到通知但是可穿戴模拟器没有显示任何通知。
我已按照以下步骤进行操作
创建可穿戴模拟器
Play商店安装的Android服装应用程序。通过USB将手机连接到桌面
我在这里遗漏了什么。 应用程序的Mini Sdk级别:8 应用程序的目标Sdk:21
答案 0 :(得分:1)
我遇到了同样的问题,解决方案是设置 - >安全 - >通知访问权限,请检查 Android Wear 以允许其阅读所有通知。