1. ホーム
  2. android

[解決済み] Android: NotificationのsetNumber()のインクリメントを修正する方法は?

2022-02-09 15:09:29

質問

を使用しています。 JobIntentService から起動されます。 BroadcastReceiver を使用して、ユーザーに期日が近いことを通知します。 別の期日の次のNotificationが近づいたら、既存のNotificationを更新して、setNumber()インジケータを+1だけ増やしたいのですが、どうすればいいですか? 最初の Notification は、"totalMesssages" 変数を正しく +1 増やし、setNumber() は Notification ドロップダウンダイアログに "1" を表示します。 次のNotificationは正しく起動しますが、setNumber()は+1ずつ増えて"2"になりません。 これは、"1"のままです。

何が足りないのでしょうか?

public class AlarmService extends JobIntentService {

    static final int JOB_ID = 9999;
    private int totalMessages = 0;

    static void enqueueWork(Context context, Intent work) {
        enqueueWork(context, AlarmService.class, JOB_ID, work);
    }

    @Override
    protected void onHandleWork(@NonNull Intent intent) {

    sendNotification();
    }

    private void sendNotification() {

        int notifyID = 1;

        NotificationManager notificationManager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
        String NOTIFICATION_CHANNEL_ID = "my_channel_id_01";

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            NotificationChannel notificationChannel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, "My Notifications", NotificationManager.IMPORTANCE_DEFAULT);

        if (notificationManager != null) {
         notificationManager.createNotificationChannel(notificationChannel);
        }
    }

    NotificationCompat.Builder mBuilder =
        new NotificationCompat.Builder(this, NOTIFICATION_CHANNEL_ID)
        .setDefaults(Notification.DEFAULT_ALL)
        .setSmallIcon(R.drawable.ic_announcement_white_24dp)
        .setContentText("")
        .setNumber(++totalMessages);

    Intent intent = new Intent(this, MainActivity.class);        
    PendingIntent contentIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
    mBuilder.setContentIntent(contentIntent);
    mBuilder.setAutoCancel(true);;

    if (notificationManager != null) {
        notificationManager.notify(notifyID, mBuilder.build());
    }
  }
}   

解決方法は?

private int totalMessages = 0;

これは毎回0に初期化されます JobIntentService から起動されます。 BroadcastReceiver .

解決策の1つは、SharedPreferencesにtotalMessageを格納し、それをAlarmServiceで使用することです。

SharedPreferences sp = getApplicationContext().getSharedPreferences("preferences_name", Context.MODE_PRIVATE);
int totalMessages = sp.getInt("total-messages", 0); //initialize to 0 if it doesn't exist
SharedPreferences.Editor editor = sp.edit();
editor.putInt("total-messages",++totalMessages);
editor.apply();

あなたのコードで通知ビルダーの直前にこれを挿入することができます。