Ще одна ідея:
якщо ви зазвичай створюєте повідомлення, вам також потрібні дії, одна, дві або три з них. Я створив "NotifyManager", він створює всі потрібні мені сповіщення, а також отримує всі дзвінки за намірами. Тож я можу керувати всіма діями, а також ловити подію звільнення в ОДНОМУ місці.
public class NotifyPerformService extends IntentService {
@Inject NotificationManager notificationManager;
public NotifyPerformService() {
super("NotifyService");
...
}
@Override
public void onHandleIntent(Intent intent) {
notificationManager.performNotifyCall(intent);
}
щоб створити deleteIntent, скористайтеся цим (в NotificationManager):
private PendingIntent createOnDismissedIntent(Context context) {
Intent intent = new Intent(context, NotifyPerformMailService.class).setAction("ACTION_NOTIFY_DELETED");
PendingIntent pendingIntent = PendingIntent.getService(context, SOME_NOTIFY_DELETED_ID, intent, 0);
return pendingIntent;
}
та ЩО я використовую для встановлення такого наміру видалення (у NotificationManager):
private NotificationCompat.Builder setNotificationStandardValues(Context context, long when){
String subText = "some string";
NotificationCompat.Builder builder = new NotificationCompat.Builder(context.getApplicationContext());
builder
.setLights(ContextUtils.getResourceColor(R.color.primary) , 1800, 3500)
.setAutoCancel(true)
.setWhen(when)
.setVibrate(new long[]{1000, 1000})
.setLargeIcon(BitmapFactory.decodeResource(context.getResources(), R.mipmap.ic_launcher))
.setSmallIcon(R.drawable.ic_white_24dp)
.setGroup(NOTIFY_GROUP)
.setContentInfo(subText)
.setDeleteIntent(createOnDismissedIntent(context))
;
return builder;
}
і, нарешті, у тому ж NotificationManager є функція виконувати:
public void performNotifyCall(Intent intent) {
String action = intent.getAction();
boolean success = false;
if(action.equals(ACTION_DELETE)) {
success = delete(...);
}
if(action.equals(ACTION_SHOW)) {
success = showDetails(...);
}
if(action.equals("ACTION_NOTIFY_DELETED")) {
success = true;
}
if(success == false){
return;
}
}
builder.setAutoCancel(true);
, коли користувач натискає сповіщення, і воно скасовується, delete-Intent не запускається