我以2小时的间隔设置闹钟。它的工作非常完美但问题是,在设置时会触发警报。 它没有必要在设置休息时触发警报就可以了。
Intent _myIntent = new Intent(activity, MyReceiverStartPush.class);
_myIntent.putExtra("msg", "Feed");
PendingIntent _myPendingIntent = PendingIntent.getBroadcast(
activity, 0, _myIntent, 0);
AlarmManager _myAlarmManager = (AlarmManager) activity
.getSystemService(Service.ALARM_SERVICE);
_myAlarmManager.setRepeating(AlarmManager.RTC_WAKEUP,
System.currentTimeMillis(), (AlarmManager.INTERVAL_HOUR)
* 2, _myPendingIntent);
答案 0 :(得分:1)
您应该使用{{1}}而不是{{1}}(这是原因)