从android中的arrayList创建提醒

时间:2015-01-15 02:38:10

标签: android

我已经创建了一个具有特定时间段的饮食图表arrayList,现在我想创建一个提醒,当有特定饮食的时候会通知它。

1 个答案:

答案 0 :(得分:1)

虽然这个问题有点旧,但它仍然可以帮助其他用户。您必须使用警报管理器在特定时间触发。

Intent intent = new Intent(this, MyService.class);
PendingIntent pintent = PendingIntent.getService(this, 0, intent, 0);
AlarmManager alarm = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
alarm.setRepeating(AlarmManager.RTC_WAKEUP,<here set time when you want to trigger>,<here you can set time to repeat after trigering continusosly>,pintent);