我想为setGroup()
的群组分配通知,以便堆叠通知并对其进行汇总。
赞HERE
final static String GROUP_KEY_SAPPHIRE = "group_key_emails";
NotificationCompat.Builder oneBuilder = new NotificationCompat.Builder(this);
oneBuilder.setSmallIcon(R.drawable.warning_icon)
.setContentTitle("Warning: ")
.setContentText(message)
.setPriority(0x00000002)
.setLights(Color.GREEN, 500, 500)
.setGroup(GROUP_KEY_SAPPHIRE)
.addAction (R.drawable.ic_action_accept_dark,
getString(R.string.ok), warningPendingIntent);
NotificationManager oneNotificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
oneNotificationManager.notify(NOTIFICATION_ID, oneBuilder.build());
editText.setText("");
但我总是得到无法解析方法setGroup的响应。 我已导入 .v4.support库。
提前致谢
答案 0 :(得分:1)
这可能为时已晚,但对于其他人都有像我这样的问题,您应该更新.v4.support库。至少在Gradle build.gradle应用依赖项中支持-v4:21,这种堆叠方式可以从API 21+获得。