前提・実現したいこと
バックグラウンドで実行させる為に、startForegroundを用いたのですが
その時のNotificationの内容を後から変更するにはどうしたらいいのでしょうか?
Java
1notificationManager.createNotificationChannel(channel); 2 3Notification notification = new Notification.Builder(context, channelId) 4 .setContentTitle(title) 5 .setSmallIcon(android.R.drawable.ic_media_play) 6 .setContentText("test") // ここの内容を後から変更したい 7 .setAutoCancel(true) 8 .setContentIntent(pendingIntent) 9 .setWhen(System.currentTimeMillis()) 10 .build(); 11 12// startForeground 13startForeground(1, notification);
AndroidVersion : 9
あなたの回答
tips
プレビュー