How to show a notification everyday at a certain time even when the app is closed?

前端 未结 3 445
温柔的废话
温柔的废话 2021-02-04 10:52

Although this question might have been asked before on Stack Overflow, I still haven\'t found a clear answer.

I want to show a notification everyday at 12pm for example

3条回答
  •  庸人自扰
    2021-02-04 11:16

    If I understood you correctly, I believe that you need setup a recurring alarm using AlarmManager. You also need to setup starting alarm service on device reboot. You can write a method that does what you want so it get executed when the alarm runs e.g. show notification. The following links should help you:

    • Android Fundamentals: Scheduling Recurring Tasks
    • Repeat Alarm Example In Android Using AlarmManager

提交回复
热议问题