状态栏中的通知每天都会到达某一天

时间:2011-10-26 08:52:26

标签: android notifications statusbar alarm

我想制作一个每天同时重复的通知,由用户选择。用户还有可能决定他是否会被授权。

警报管理器可以实现吗?我可以使用我的设置停止或更改重复吗?如何才能使它在某一天自动停止?

非常感谢:)

1 个答案:

答案 0 :(得分:2)

也许您可以使用带计划的计时器:

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

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