4

一定期間後に通知を自動的に非表示にすることはできますか?

4

5 に答える 5

4

AlarmManagerを使用できます。Androidサービスよりも適切で実装が簡単だと思います。

時間AlarmManagerが終わるまで何かを実行することを心配する必要はありません。Androidはあなたに代わってそれを行い、それが起こったときにブロドキャストを送信します。正しいインテントを取得するには、アプリケーションにレシーバーが必要です。

これらの例を見てください:

于 2013-03-27T02:48:06.117 に答える
2

今と呼ばれるオプションがあります.setTimeoutAfter(long durationMs)

https://developer.android.com/reference/android/app/Notification.Builder.html#setTimeoutAfter(long)

于 2019-09-20T21:59:20.483 に答える
1

ええ、5分後にタイムアウトするバックグラウンドで実行されるサービスを作成し、通知を削除することができます。あなたが実際にそれを「すべき」かどうかは議論の余地があります。ユーザーに通知するための通知がそこにある必要があります...そしてユーザーは自分でそれを却下できる必要があります。

d.android.comから:

サービスは、バックグラウンドで長時間実行される操作を実行できるアプリケーションコンポーネントであり、ユーザーインターフェイスを提供しません。

于 2013-03-26T22:41:06.100 に答える
1

ええ、それはとても簡単です。通知を受け取った場所で、通知がユーザーによって読み取られない場合はハンドラーを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);
}
于 2016-08-16T09:53:27.430 に答える
0

単純な小さなスレッドには、従来のJavaRunnableを使用することもできます。

Handler h = new Handler();
    long delayInMilliseconds = 5000;
    h.postDelayed(new Runnable() {
        public void run() {
            mNotificationManager.cancel(id);
        }
    }, delayInMilliseconds);

こちらもご覧ください:

数秒後に通知をクリアする

于 2016-06-20T16:20:21.860 に答える