每天都会在状态栏中发出通知,直到到达某一天

发布于 2024-12-12 03:36:30 字数 115 浏览 0 评论 0原文

我想制作一个每天同一时间重复的通知,由用户选择。用户还可以决定是否通知他。

警报管理器可以实现这一点吗?我可以停止它或通过我的设置更改重复次数吗?如何让它在某一天自动停止?

多谢 :)

I want to make a Notification that repeats every day at the same time, which is choosen by the user. The user has got also the possibility to decide wheater he will be nofified or not.

Is that possible with the Alarm Manager? Can I stop it or change the repetition with my settings? How can i make it possible that it stops automatically at a certain day?

Thanks a lot :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赠意 2024-12-19 03:36:30

也许你可以使用带有时间表的计时器:

http://developer.android.com /reference/java/util/Timer.html

就像

this.timer=new Timer();
this.timer.scheduleAtFixedRate{
new TimerTask(){
     public void run()
      {
    send_notification();
         }
    },
    0,
    864000000   // Every 86.400 seconds, aka 1 day
);

你必须进行实验,但这应该是一个好的开始

Maybe you could you use a Timer with schedule:

http://developer.android.com/reference/java/util/Timer.html

Something like

this.timer=new Timer();
this.timer.scheduleAtFixedRate{
new TimerTask(){
     public void run()
      {
    send_notification();
         }
    },
    0,
    864000000   // Every 86.400 seconds, aka 1 day
);

You'll have to experiment, but this should be a good start

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文