Tag: android wear notification

Android:分组通知和摘要仍然分别显示在4.4和以下

我想在Android Wear上实施堆叠通知为此,我为每个“商品”创build了1个摘要通知和N个单独通知。 我只想要摘要在手机上显示。 这是我的代码: private void showNotifications() { NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE); showNotification1(notificationManager); showNotification2(notificationManager); showGroupSummaryNotification(notificationManager); } private void showNotification1(NotificationManager notificationManager) { showSingleNotification(notificationManager, "title 1", "message 1", 1); } private void showNotification2(NotificationManager notificationManager) { showSingleNotification(notificationManager, "title 2", "message 2", 2); } protected void showSingleNotification(NotificationManager notificationManager, String title, String message, int notificationId) { NotificationCompat.Builder builder = new […]

Android Wear通知在更新时防止闪烁图标

我似乎无法创build一个Android Wear通知,更新闪烁的应用程序图标,而相同的代码在Android手机上正常工作。 大多数引用的解决scheme都是关于更新相同的通知,使用setAlertOnlyOnce ,保持ID或相同的时间。 但是,无论我做什么,每次通知更新时都会闪烁(最常见的是App图标)。 正如这里所build议的Android Wear:穿戴设备上的定时器像通知卡,您可以使用setHintHideIcon(true)来隐藏应用程序图标,这隐藏了闪烁的部分,但是在Android Wear Notifications的有限世界中,应用程序图标在品牌的应用程序。 如果你想要一个计时器,你可以使用.setUsesChronometer(真) ,让系统更新完美的计时器。 不幸的是,如果你想更新的东西比时间(如步骤或消息收到计数)在我看来,你是运气不好。 下面你可以find代码,当作为手机应用程序运行时工作正常,但作为可穿戴应用程序运行时闪烁。 在下面的评论线表明,通知仍然闪烁(在穿戴时运行,而不是在电话上)通知在可穿戴设备上发布未改变的通知时仍然闪烁。 取消注释以再次更新通知。 mNotification = buildNotification(WearMainActivity.this); 因此,我的问题是,如果任何人有任何进一步的想法,我们可以探讨保持眨眼的通知,或者如果我们可以把这写成一个Android Wear错误? public class WearMainActivity extends Activity { public final int NOTIFICATION_ID= 1; public Notification mNotification; public int count; public long when; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); count = 0; when = System.currentTimeMillis(); mNotification = […]