简体   繁体   中英

Creating reminder from a arrayList in android

我已经创建了具有特定时间段的Dietchart arrayList,现在我想创建一个提醒,该提醒将在特定饮食时间到来时发出声音。

Although this question is little bit old but it can still help to other users. You have to use alarm manager for triggering at specific time.

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); 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM