奥利奥本地通知的奇怪问题

Weird issue with local notification on Oreo

我正在尝试实现一项功能,用户可以在其中设置将与本地推送通知一起发送的提醒。

我正在使用 AlarmManager 在时间到了时进行广播。 然后在广播接收器中,我发布一个本地通知,然后启动一个启动 activity 的前台服务,这样我就可以唤醒设备并打开屏幕。

如果我在发布通知后什么都不做(只是 return 而不是启动前台服务),我可以让设备毫无问题地显示通知。 但是,如果我在发布通知后立即启动服务,我得到的只是一些振动,但我在任何地方都看不到通知。 更奇怪的是,来自通知管理器,它说有 1 个来自 getActiveNotifications() 的通知,尽管什么都没有。

接收者:

@Override
public void onReceive(Context context, Intent intent) {
    final String action = intent.getAction();
    if (!action.equals(context.getString(R.string.reminder_action_string))) {
        // fail safe check
        return;
    }

    // create the channel for android 8
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        NotificationChannel channel = new NotificationChannel(
                CHANNEL_ID,
                context.getString(R.string.reminder_notification_channel),
                NotificationManager.IMPORTANCE_HIGH);

        channel.setDescription(context.getString(R.string.reminder_notification_channel_desc));

        final AudioAttributes attributes = new AudioAttributes.Builder()
                .setUsage(AudioAttributes.USAGE_NOTIFICATION)
                .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
                .build();
        channel.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION), attributes);

        NotificationManager notificationManager = context.getSystemService(NotificationManager.class);
        notificationManager.createNotificationChannel(channel);
    }

    NotificationCompat.Builder builder = new NotificationCompat.Builder(context, ReceiverReminder.CHANNEL_ID)
            .setChannelId(ReceiverReminder.CHANNEL_ID)
            .setContentTitle(context.getString(R.string.reminder_title))
            .setContentText(intent.getStringExtra(ActivityReminderCreate.TEXT_STRING))
            .setSmallIcon(R.drawable.ic_mic)
            .setStyle(new NotificationCompat.BigTextStyle()
                    .bigText(intent.getStringExtra(ActivityReminderCreate.TEXT_STRING)))
            .setPriority(NotificationCompat.PRIORITY_MAX)
            .setCategory(NotificationCompat.CATEGORY_ALARM)
            .setVisibility(NotificationCompat.VISIBILITY_SECRET)
            .setContentIntent(PendingIntent.getActivity(context, 0, new Intent(context, ActivityReminderList.class).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK), PendingIntent.FLAG_ONE_SHOT))
            .setAutoCancel(true);

    NotificationManagerCompat manager = NotificationManagerCompat.from(context);
    Notification notification = builder.build();
    final int id = mSecureRandom.nextInt();
    manager.notify(id, notification);

    Intent serviceIntent = new Intent(context, ServiceReminder.class);
    serviceIntent.putExtras(intent);
    serviceIntent.putExtra(KEY_ID, id);
    serviceIntent.putExtra(KEY_NOTIFICATION, notification);
    ContextCompat.startForegroundService(context, serviceIntent);
}

意向服务:

@Override
protected void onHandleIntent(@Nullable Intent intent) {
    // construct notification object
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        // start self in foreground
        NotificationManager manager = getSystemService(NotificationManager.class);
        Log.e(TAG, "notification count: " + manager.getActiveNotifications().length);


        Notification notification = intent.getExtras().getParcelable(ReceiverReminder.KEY_NOTIFICATION);
        int id = intent.getExtras().getInt(ReceiverReminder.KEY_ID);
        startForeground(id, notification);

        Log.e(TAG, "notification count: " + manager.getActiveNotifications().length);
    }

    // start an activity so device can be waken up
    Intent activityIntent = new Intent(ServiceReminder.this, ActivityReminderList.class);
    activityIntent.putExtra(ActivityReminderList.KEY_FROM_SERVICE, true);
    startActivity(activityIntent);
}

我明白为什么了...

我使用了一个 IntentService,它会在当前工作完成后自行终止。 并且在前台服务的情况下,当服务停止时关联的通知将被取消。

我已经改为使用 Service,通知会保留在那里。