Date Changed事件仅在日期增量时触发,但在递减时不触发

时间:2013-02-23 15:50:23

标签: android

public class AlarmReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {

        if(Intent.ACTION_DATE_CHANGED.equals(intent.getAction())){
            AlarmUtility alarmUtility = new AlarmUtility();
            alarmUtility.setAlarm(context.getApplicationContext());
            Toast.makeText(context, "Date Changed !!!!!!!!!!", 10000).show();
        }
      }
}

将日期更改为明天会触发事件,但再次将其减少到今天不会触发任何事件。

我做错了吗?请帮忙。提前谢谢。

0 个答案:

没有答案