使用Android无法在Pebble上收到通知

时间:2015-01-27 13:25:36

标签: android notifications pebble-watch

我购买了鹅卵石智能手表。现在我正在开发一个小应用程序。因为我在点击通知后向android手机发送通知,它会在pebble手表上发送。现在我在Android手机上收到通知,同时点击通知它不会在Pebble手表上发送。  我写了以下代码。

NotificationCompat.Builder builder = new NotificationCompat.Builder(context);
builder.setSmallIcon(R.drawable.ic_launcher);
builder.setContentTitle("Wearable Pomodoro");
builder.setContentText("Starting the timer ...");

NotificationManager notifManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

notifManager.notify(42, builder.build());

请帮我发送鹅卵石手表的通知。 提前谢谢。

1 个答案:

答案 0 :(得分:0)

您是否已启用向Pebble发送通知给您正在撰写的应用?默认情况下,Pebble不会发送新应用的通知,您必须手动启用它们。

进入Pebble应用程序,进入通知设置并单击“所有应用程序”。向下滚动到您正在构建的应用程序,并确保它已被选中。或者,点按“全选”按钮以转发来自每个应用的通知。