我想将通知分配给具有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库。

提前致谢

最佳答案

这可能为时已晚,但对于像我这样的其他所有人,您应该更新.v4.support库。至少在Gradle build.gradle应用程序依赖项中至少达到support-v4:21,此堆叠样式可从API 21+获得。

07-26 09:29