Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个提醒应用程序。如果用户单击警报按钮,警报应设置为接下来的 3 小时,并在 3 小时完成后在状态栏中显示通知。
我想我必须使用警报管理器来执行此操作,但我不知道如何将 3 小时添加到当前系统时间并为该时间设置通知。
跟着它
AlarmManager am = (AlarmManager) sContext.getSystemService(Context.ALARM_SERVICE); am.set(AlarmManager.RTC, System.currentTimeMillis() + 3*60*60*1000, sAlertSender);