关于可穿戴设备的Android通知不够明显

时间:2014-12-08 16:00:53

标签: android notifications android-notifications wear-os

关于可穿戴设备的通知。我收到了手表上的通知,但手表没有振动,只有当我向手表上方滑动时,才会看到通知。像这样它很没用。手机振动并在标题中显示通知。我希望手表上的通知直接显示在手表上或手表振动。甚至两者都是。

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

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);

1 个答案:

答案 0 :(得分:0)

看起来你的磨损设备看起来很柔和。你看到smth类似于第一个铃铛图标吗?

向下滑动以取消手表静音。

enter image description here