我已经实现了示例应用程序来获取通知。我希望在用户输入时间和系统时间相等时显示通知,然后通知应该出现,并且还会像提醒一样出现在暂停中。这里我使用过数字时钟,我可以看到它正在运行的数字时钟时间。当用户时间和系统时间相等时,通知没有显示。
我编写的代码如下
//This is for get the system time
DateFormat df = DateFormat.getTimeInstance();
systime = df.format(new Date());// system time formate is :HH:MM:SS
//thi is for user entered data
usertime="HH:MM:SS";
if(systime.equals(usertime))
{
notify(); //calling notify method to get the notification
}
当usertime和systime等于提醒时,它不会显示任何通知。
如何显示通知仍然是systime和usertime相同,如提醒通知?
请任何人帮助我
提前致谢
答案 0 :(得分:2)
您应该使用AlarmManager来安排通知。