0

在我的应用程序中,我设置了许多警报通知。 所有在不同的日期,但在同一时间。而且我在切换按钮的帮助下打开/关闭它。Android:警报通知问题

现在的问题是,如果我设置它然后在那个时候它给我从当前日期的前一个通知。它只会立即出现,然后所有警报通知都可以正常工作。

假设如果我已将闹钟设置为12,14,16日期,那么我在设备中设置日期为15,然后在切换按钮上,那时它会通知我当时有14。然后一切顺利。

那么它在逻辑上是正确的还是在我的代码中有任何问题?

是否应该发生?

请看到我已经设置了报警通知下面的代码:

public void startTwoMonthAlarmNotification() { 

     // ===================== GST ALARM FOR THE TWO MONTHS ========================== 
     // for the GST 20 June 2011 
     AM_2M_GST_1 = (AlarmManager) getApplicationContext().getSystemService(Context.ALARM_SERVICE); 
     Intent in1 = new Intent(this, AlarmReceiverNotificationForTwoMonth.class); 
     in1.putExtra("MyMessage","Your 2 Monthly GST return is DUE on 20th June 2011."); 
     PI_2M_GST_1 = PendingIntent.getBroadcast(this, 0, in1, PendingIntent.FLAG_UPDATE_CURRENT); 
     Calendar calendar_GST_18_June_2011 = Calendar.getInstance(); 
     calendar_GST_18_June_2011.setTimeInMillis(System.currentTimeMillis()); 
     calendar_GST_18_June_2011.set(2011, 5, 18, mHour, mMinute, 0); 
     AM_2M_GST_1.set(AlarmManager.RTC_WAKEUP, calendar_GST_18_June_2011.getTimeInMillis(), PI_2M_GST_1); 

     // for the GST 19 August 2011 
     AM_2M_GST_2 = (AlarmManager) getApplicationContext().getSystemService(Context.ALARM_SERVICE); 
     Intent in2 = new Intent(this, AlarmReceiverNotificationForTwoMonth.class); 
     in2.putExtra("MyMessage","Your 2 Monthly GST return is DUE on 19th August 2011."); 
     PI_2M_GST_2 = PendingIntent.getBroadcast(this, 1, in2, PendingIntent.FLAG_UPDATE_CURRENT); 
     Calendar calendar_GST_17_August_2011 = Calendar.getInstance(); 
     calendar_GST_17_August_2011.setTimeInMillis(System.currentTimeMillis()); 
     calendar_GST_17_August_2011.set(2011, 7, 17,mHour, mMinute, 0); 
     AM_2M_GST_2.set(AlarmManager.RTC_WAKEUP, calendar_GST_17_August_2011.getTimeInMillis(),PI_2M_GST_2); 

     // for the GST 21 October 2011 
     AM_2M_GST_3 = (AlarmManager) getApplicationContext().getSystemService(Context.ALARM_SERVICE); 
     Intent in3 = new Intent(this, AlarmReceiverNotificationForTwoMonth.class); 
     in3.putExtra("MyMessage","Your 2 Monthly GST return is DUE on 21st October 2011."); 
     PI_2M_GST_3 = PendingIntent.getBroadcast(this, 2, in3, PendingIntent.FLAG_UPDATE_CURRENT); 
     Calendar calendar_GST_19_October_2011 = Calendar.getInstance(); 
     calendar_GST_19_October_2011.setTimeInMillis(System.currentTimeMillis()); 
     calendar_GST_19_October_2011.set(2011, 9, 19,mHour, mMinute, 0); 
     AM_2M_GST_3.set(AlarmManager.RTC_WAKEUP, calendar_GST_19_October_2011.getTimeInMillis(),PI_2M_GST_3); 

     // for the GST 17 December 2011 
     AM_2M_GST_4 = (AlarmManager) getApplicationContext().getSystemService(Context.ALARM_SERVICE); 
     Intent in4 = new Intent(this, AlarmReceiverNotificationForTwoMonth.class); 
     in4.putExtra("MyMessage","Your 2 Monthly GST return is DUE on 19th December 2011."); 
     PI_2M_GST_4 = PendingIntent.getBroadcast(this, 3, in4, PendingIntent.FLAG_UPDATE_CURRENT); 
     Calendar calendar_GST_17_December_2011 = Calendar.getInstance(); 
     calendar_GST_17_December_2011.setTimeInMillis(System.currentTimeMillis()); 
     calendar_GST_17_December_2011.set(2011, 11, 17,mHour, mMinute, 0); 
     AM_2M_GST_4.set(AlarmManager.RTC_WAKEUP, calendar_GST_17_December_2011.getTimeInMillis(),PI_2M_GST_4); 
     ///////////////////////////////////// 
     // for the GST 26 February 2012 
     AM_2M_GST_5 = (AlarmManager) getApplicationContext().getSystemService(Context.ALARM_SERVICE); 
     Intent in5 = new Intent(this, AlarmReceiverNotificationForTwoMonth.class); 
     in5.putExtra("MyMessage","Your 2 Monthly GST return is DUE on 28th February 2012."); 
     PI_2M_GST_5 = PendingIntent.getBroadcast(this, 4, in5, PendingIntent.FLAG_UPDATE_CURRENT); 
     Calendar calendar_GST_26_February_2012 = Calendar.getInstance(); 
     calendar_GST_26_February_2012.setTimeInMillis(System.currentTimeMillis()); 
     calendar_GST_26_February_2012.set(2012, 1, 26,mHour, mMinute, 0); 
     AM_2M_GST_5.set(AlarmManager.RTC_WAKEUP, calendar_GST_26_February_2012.getTimeInMillis(),PI_2M_GST_5); 
     ///////////////////// 
    // for the GST 27 April 2012  
     AM_2M_GST_6 = (AlarmManager) getApplicationContext().getSystemService(Context.ALARM_SERVICE); 
     Intent in6 = new Intent(this, AlarmReceiverNotificationForTwoMonth.class); 
     in6.putExtra("MyMessage","Your 2 Monthly GST return is DUE on 29th April 2012."); 
     PI_2M_GST_6 = PendingIntent.getBroadcast(this, 5, in6, PendingIntent.FLAG_UPDATE_CURRENT); 
     Calendar calendar_GST_27_April_2012 = Calendar.getInstance(); 
     calendar_GST_27_April_2012.setTimeInMillis(System.currentTimeMillis()); 
     calendar_GST_27_April_2012.set(2012, 3, 27,mHour, mMinute, 0); 
     AM_2M_GST_6.set(AlarmManager.RTC_WAKEUP, calendar_GST_27_April_2012.getTimeInMillis(),PI_2M_GST_6); 

    // for the GST 16 January 2012 
     AM_2M_GST_7 = (AlarmManager) getApplicationContext().getSystemService(Context.ALARM_SERVICE); 
     Intent in7 = new Intent(this, AlarmReceiverNotificationForTwoMonth.class); 
     in7.putExtra("MyMessage","Your 2 Monthly GST return is DUE on 16th January 2012."); 
     PI_2M_GST_7 = PendingIntent.getBroadcast(this, 6, in7, PendingIntent.FLAG_UPDATE_CURRENT); 
     Calendar calendar_GST_16_January_2012 = Calendar.getInstance(); 
     calendar_GST_16_January_2012.setTimeInMillis(System.currentTimeMillis()); 
     calendar_GST_16_January_2012.set(2012, 0, 14,mHour, mMinute, 0); 
     AM_2M_GST_7.set(AlarmManager.RTC_WAKEUP, calendar_GST_16_January_2012.getTimeInMillis(),PI_2M_GST_7); 
     } 

下面的代码是在toogleButton关闭取消全部通知报警:

 AM_2M_GST_1.cancel(PI_2M_GST_1); 
    AM_2M_GST_2.cancel(PI_2M_GST_2); 
    AM_2M_GST_3.cancel(PI_2M_GST_3); 
    AM_2M_GST_4.cancel(PI_2M_GST_4); 
    AM_2M_GST_5.cancel(PI_2M_GST_5); 
    AM_2M_GST_6.cancel(PI_2M_GST_6); 
    AM_2M_PROVISIONAL_1.cancel(PI_2M_PROVISIONAL_1); 
    AM_2M_PROVISIONAL_2.cancel(PI_2M_PROVISIONAL_2); 
    AM_2M_PROVISIONAL_3.cancel(PI_2M_PROVISIONAL_3); 
    AM_2M_TERMINAL_1.cancel(PI_2M_TERMINAL_1); 
+0

也许这是一个索引问题。你应该发布一些代码。 – dokkaebi

+0

@dokkaebi:请参阅最新的问题。我用来设置闹钟。那有什么不对?我的逻辑是否设置了它? –

+0

@dokkaebi:你有什么想法如何解决它或为什么它是这样的? –

回答

3

首先,你必须取消旧的AlarmManager和Pending Intent。在这里你并没有取消你的Pending Intent。只是取消使用THIC码 -

alaramManagerObj.cancel(pendingIntent); 
pendingIntent.cancel(); 

这将是清楚您不需要的通知,并只为提供报警的作品。如果您想要检查具有该日期的指定日期的闹钟是否通过。只是这个检查 -

Calendar c = Calendar.getInstance(); 
c.set(2011, 1, 20); 
long mills = c.getTimeInMillis(); 
long currentTime = System.currentTimeMillis(); 
int x = (mills<=currentTime)?0:1; 

在整数x将返回0,如果日期不通过,否则返回1.使用此代码,以您的需求。

希望这可以帮助你。

+0

O谢谢。这个对我有用。 –

+1

谢谢它也适用于我... –