38

Android Wear にスタック通知を実装したいそのために、「アイテム」ごとに 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 NotificationCompat.Builder(this);
    builder.setContentTitle(title)
            .setContentText(message)
            .setSmallIcon(R.mipmap.ic_launcher)
            .setGroupSummary(false)
            .setGroup("group");
    Notification notification = builder.build();
    notificationManager.notify(notificationId, notification);
}

private void showGroupSummaryNotification(NotificationManager notificationManager) {
    NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
    builder.setContentTitle("Dummy content title")
            .setContentText("Dummy content text")
            .setStyle(new NotificationCompat.InboxStyle()
                    .addLine("Line 1")
                    .addLine("Line 2")
                    .setSummaryText("Inbox summary text")
                    .setBigContentTitle("Big content title"))
            .setNumber(2)
            .setSmallIcon(R.mipmap.ic_launcher)
            .setCategory(Notification.CATEGORY_EVENT)
            .setGroupSummary(true)
            .setGroup("group");
    Notification notification = builder.build();
    notificationManager.notify(123456, notification);
}

これは Android 5.1 で問題なく動作し、電話の通知バーには概要のみが表示されます。

ここに画像の説明を入力

ただし、Android 4.4 では、個別の通知 1 と 2 も表示されます。

ここに画像の説明を入力

どちらの場合も、必要に応じて、Android Wear の通知がスタックに表示されます。Android 4.4 で通知バーに概要通知のみを表示するにはどうすればよいですか?

4

2 に答える 2

22

を使用してこれを修正しました

NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this);

それ以外の

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

対応するメソッド シグネチャで NotificationManager を NotificationManagerCompat に置き換えます。

于 2015-07-21T18:57:38.607 に答える