一定期間後に通知を自動的に非表示にすることはできますか?
5 に答える
AlarmManagerを使用できます。Androidサービスよりも適切で実装が簡単だと思います。
時間AlarmManager
が終わるまで何かを実行することを心配する必要はありません。Androidはあなたに代わってそれを行い、それが起こったときにブロドキャストを送信します。正しいインテントを取得するには、アプリケーションにレシーバーが必要です。
これらの例を見てください:
今と呼ばれるオプションがあります.setTimeoutAfter(long durationMs)
https://developer.android.com/reference/android/app/Notification.Builder.html#setTimeoutAfter(long)
ええ、5分後にタイムアウトするバックグラウンドで実行されるサービスを作成し、通知を削除することができます。あなたが実際にそれを「すべき」かどうかは議論の余地があります。ユーザーに通知するための通知がそこにある必要があります...そしてユーザーは自分でそれを却下できる必要があります。
サービスは、バックグラウンドで長時間実行される操作を実行できるアプリケーションコンポーネントであり、ユーザーインターフェイスを提供しません。
ええ、それはとても簡単です。通知を受け取った場所で、通知がユーザーによって読み取られない場合はハンドラーを1つ追加してから、通知を削除します。
@Override
public void onMessageReceived(RemoteMessage message) {
sendNotification(message.getData().toString);
}
通知コードを追加する
private void sendNotification(String messageBody) {
Intent intent = new Intent(this, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent,
PendingIntent.FLAG_ONE_SHOT);
Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("TEST NOTIFICATION")
.setContentText(messageBody)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
int id = 0;
notificationManager.notify(id, notificationBuilder.build());
removeNotification(id);
}
通知コードをキャンセルします。
private void removeNotification(int id) {
Handler handler = new Handler();
long delayInMilliseconds = 20000;
handler.postDelayed(new Runnable() {
public void run() {
notificationManager.cancel(id);
}
}, delayInMilliseconds);
}
単純な小さなスレッドには、従来のJavaRunnableを使用することもできます。
Handler h = new Handler();
long delayInMilliseconds = 5000;
h.postDelayed(new Runnable() {
public void run() {
mNotificationManager.cancel(id);
}
}, delayInMilliseconds);
こちらもご覧ください: