web-dev-qa-db-ja.com

フォアグラウンドサービスの通知の使用をキャンセルする(スワイプ却下)、またはすべての通知をクリアするにはどうすればよいですか?

現在、サービスの開始時に通知バーに表示される通知を使用してフォアグラウンドサービスを作成しています。サービスが停止すると、通知は閉じられます。私の質問は、「すべての通知をクリア」または通知の却下(スワイプ)が発生したときにサービスを停止する方法はありますか?

通知の実装を含むように更新されました:

public int onStartCommand(Intent intent, int flags, int startId)
{   
    Log.d(CLASS, "onStartCommand service started.");

    if (getString(R.string.service_start_action) == intent.getAction())
    {
        Intent intentForeground = new Intent(this, ServiceMain.class)
            .setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);    
        PendingIntent pendIntent = PendingIntent.getActivity(getApplicationContext(), 0, intentForeground, 0);      
        Notification notification;
        Notification.Builder builder = new Notification.Builder(getApplicationContext())
            .setSmallIcon(Android.R.drawable.btn_star)
            .setTicker("Service started...")
            .setContentIntent(pendIntent)
            .setDefaults(Notification.DEFAULT_ALL)
            .setOnlyAlertOnce(true)
            .setOngoing(false);
        notification = builder.build();
        notification.flags |= Notification.FLAG_FOREGROUND_SERVICE;

        startForeground(SERV_NOTIFY, notification);
        player.start();
    }
    else
    {
        Log.d(CLASS, "onStartCommand unable to identify acition.");
    }

    return START_STICKY;        
}
19
d.moncada

ユーザーは、進行中のフォアグラウンドサービスによって生成された通知をスワイプして削除することはできません。

したがって、最初にstopForeground(false)を実行します。これにより、ユーザーは通知をスワイプして削除できます(少なくともLollipop +では)。ロリポップ以前の場合、フォアグラウンドを停止して通知を削除するstopForeground(true)を実行してから、notificationManager.notify(yourNotificationID, yourNotificationObject)を使用して通知を再発行し、通知を表示しながらスワイプできるようにする必要があります。

重要なのは、ユーザーがスワイプして離れたときにトリガーされる削除インテントを使用して通知オブジェクトを設定することです。

_(new NotificationCompat.builder(this).setDeleteIntent(deletePendingIntent)).build()
_

ここで、deletePendingIntentは次のようなものです。

_Intent deleteIntent = new Intent(this, YourService.class);
deleteIntent.putExtra(someKey, someIntValue);
PendingIntent deletePendingIntent = PendingIntent.getService(this,
someIntValue, 
deleteIntent, 
PendingIntent.FLAG_CANCEL_CURRENT);
_

ユーザーがそれをスワイプすると、余分なインテントがサービスに配信されます。配信されたエクストラをonStartCommand内で処理します。つまり、_intent != null_、intent.getExtras() != nullを確認し、someKeyで指定されたエクストラバンドルから値を抽出し、someIntValueと一致する場合は、stopSelf()を呼び出します。 。

24
Kevin Lee

このコードは私のために働きます:

this.stopForeground(false);
mNotificationManager.cancel(NOTIFY_ID);

onStartCommandの戻り値を設定する必要があります。STRAT_STICKYはサービスを再起動します。

5
cmnewfan

フォアグラウンドサービスの通知はクリアできません。唯一の方法はサービスを停止することです。

だから私はあなたが解決したい問題が決して起こらないと信じています。

5
Luis

私の質問は、「すべての通知をクリア」または通知の却下(スワイプ)が発生したときにサービスを停止する方法はありますか?

Notificationがクリアできるように設定されているとすると、 deleteIntent はクリアされたときに呼び出す必要があります。これをgetBroadcast()PendingIntentに設定して、stopService()を呼び出すマニフェストに登録されたBroadcastReceiverを指すことができます。

4
CommonsWare

作成した通知に設定できるdismissIntentがありますが、フォアグラウンドサービスの通知はクリアできないと思いましたか?

0
dnkoutso

私は次のことをしました、そしてそれは私のために働きました:

  1. フォアグラウンドサービスの通知で使用されるのと同じIDと通知チャネルでフォアグラウンドサービスを呼び出す前に通知を作成しました

  2. 通知IDで通知をキャンセルしました

  3. 必要な構造で別の通知を作成しました

  4. フォアグラウンドサービスを停止せずに、この最後の通知を閉じるかスワイプできます

0
abdo