0

通知ドロワーからキャンセルできないヘッドアップ通知が必要なので、ヘッドアップ継続通知を作成しました。

NotificationCompat.Builder mBuilder =
            new NotificationCompat.Builder(context)
                    .setSmallIcon(R.drawable.logo_notification)
                    .setContentTitle("Title")
                    .setPriority(NotificationCompat.PRIORITY_HIGH)
                    .setDefaults(Notification.DEFAULT_ALL)
                    .setGroup(KEY)
                    .setGroupSummary(true)
                    .setOngoing(true)
                    .setColor(context.getResources().getColor(R.color.tab_indicator_color));


    // Creates an explicit intent for an Activity in your app
    Intent resultIntent = new Intent(context, Activity.class);

    // The stack builder object will contain an artificial back stack for the
    // started Activity.
    // This ensures that navigating backward from the Activity leads out of
    // your application to the Home screen.
    TaskStackBuilder stackBuilder = TaskStackBuilder.create(context);
    // Adds the back stack for the Intent (but not the Intent itself)
    stackBuilder.addParentStack(WActivity.class);
    // Adds the Intent that starts the Activity to the top of the stack
    stackBuilder.addNextIntent(resultIntent);
    PendingIntent resultPendingIntent =
            stackBuilder.getPendingIntent(
                    0,
                    PendingIntent.FLAG_UPDATE_CURRENT
            );
    mBuilder.setContentIntent(resultPendingIntent);

    NotificationManager mNotificationManager =
            (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);

    Intent pIntent = new Intent(context, PService.class);
    pIntent.setAction("ACTION");
    PendingIntent piPause = PendingIntent.getService(context, NOTIFICATION_ID, pIntent, 0);
    mBuilder.addAction(icon, title, piPause);

    Intent sIntent = new Intent(context, SService.class);
    sIntent.setAction("ACTION");
    PendingIntent piDismiss = PendingIntent.getService(context, NOTIFICATION_ID, sIntent, 0);
    mBuilder.addAction(icon2, title2, piDismiss);

問題は、通知が画面の上部に表示された後、通知ドロワーに非表示にならないことです。ただし、通知が進行中でない場合は非表示になります。通知ドロワーに非表示になるヘッドアップ通知が必要です。

4

1 に答える 1

-1

私の知る限り、通知には、ヘッドアップ通知として表示されるように設定する次のプロパティが必要です。

.setPriority(NotificationCompat.PRIORITY_HIGH)
.setDefaults(Notification.DEFAULT_ALL)

setOngoing()は、通知が進行中であり、ユーザーが非表示にできないことを意味します。それがおそらくあなたの通知が一番上に留まり、隠れない理由だと思います。削除するsetOngoing(true)と動作するはずです。

于 2016-05-18T11:45:57.873 に答える