我正在尝试为Android的xamarin表单设置特定日期的通知,而我已经做到了。我的问题是,如果我安排26-5-2019的日期并在27-5-2019中安装应用程序,那么在27-5-2019上我还会收到26-5-2019的通知。如果日期已经过去,我不想显示通知。
PendingIntent pendingIntent = PendingIntent.GetBroadcast(
Forms.Context,
notificationId,
alarmReciver,
PendingIntentFlags.CancelCurrent
);
alarmManager.Set(AlarmType.RtcWakeup, nativeDate.Time,pendingIntent);