【问题标题】:Android notification on wearable not visible enough可穿戴设备上的 Android 通知不够明显
【发布时间】:2014-12-08 16:00:53
【问题描述】:

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

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

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

【问题讨论】:

    标签: android notifications android-notifications wear-os


    【解决方案1】:

    您的穿戴设备似乎已静音。你看到类似于第一个铃铛图标的东西吗?

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

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多