可穿戴设备上的Android通知不够清晰

可穿戴设备上的Android通知不够清晰,android,notifications,android-notifications,wear-os,Android,Notifications,Android Notifications,Wear Os,这是关于可穿戴设备的通知。我收到手表上的通知,但手表不震动,只有当我在手表上滑动时,我才能看到通知。像这样是很没用的。手机会振动并在标题中显示通知。我希望手表上的通知要么直接显示在手表上,要么手表振动。或者两者兼而有之 我使用的是您在许多页面上找到的标准示例代码: NotificationCompat.WearableExtender wearableExtender = new NotificationCompat.WearableExtender(); Notification

这是关于可穿戴设备的通知。我收到手表上的通知,但手表不震动,只有当我在手表上滑动时,我才能看到通知。像这样是很没用的。手机会振动并在标题中显示通知。我希望手表上的通知要么直接显示在手表上,要么手表振动。或者两者兼而有之

我使用的是您在许多页面上找到的标准示例代码:

NotificationCompat.WearableExtender wearableExtender =  new NotificationCompat.WearableExtender();

    Notification notification = new NotificationCompat.Builder(this).setSmallIcon(R.drawable.ic_launcher).setContentTitle("Hello Android Wear")
                    .setContentText("First Wearable notification.")
                    .extend(wearableExtender).setVibrate(new long[] { 1000, 1000, 1000, 1000, 1000 })
                    .build();

    NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this);

    notificationManager.notify(0, notification);

看起来您的穿戴设备已静音。您是否看到smth与第一个钟形图标类似

向下滑动以取消手表静音