android中经常检查数据库

发布于 2024-12-14 02:44:47 字数 124 浏览 1 评论 0原文

我需要创建一个 Android 应用程序,将事件和提醒保存在数据库中。当正确的时间到来时,它应该显示一条通知。对于这种情况,我需要创建一个服务来查找任何特定时间的事件。我应该用什么方法来做这样的事情?

提前致谢 !!!

I need to create an android app which save events and reminders in a database. When the correct time comes it should show a notification. For that case I need to create a service to look for events for any particular time. What is the method I should use to do such a thing ?

Thanks in Advance !!!

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

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

发布评论

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

评论(2

海未深 2024-12-21 02:44:47

使用 AlarmManager 安排在第一个事件发生时获取控制权。那时,您可以做任何您需要做的事情(例如,显示通知来提醒用户),并为下一个事件安排下一个警报。

Use AlarmManager to arrange to get control when the first event occurs. At that time, you can do whatever it is you need to do (e.g., display a Notification to remind the user) plus schedule the next alarm for the next event.

半山落雨半山空 2024-12-21 02:44:47

我所做的是创建一个 Service 并让它进行轮询,当它发现某些内容时,它会调用 Activity 来显示通知。

对于服务,我只使用一个调用自身的线程,然后延迟调用处理程序。

我选择了一项服务,以便它可以在后台运行,因为这似乎比保持可能被杀死的活动更好。

private Handler mHandler = new Handler();
public static final int ONE_MINUTE = 60000;
private Runnable periodicTask = new Runnable() {
    public void run() {
        mHandler.postDelayed(periodicTask, TIME_DELAY * ONE_MINUTE);
        /* call your database code here */
    }
};

我让用户可以在几分钟内配置延迟。

What I did was to create a Service and have it do the polling, and when it finds something it then calls an Activity to display the notification.

For the Service I just use a thread that calls itself, and then has a delayed call to a handler.

I went with a service so it could run in the background, as it seems to be better than keeping an activity alive that may be killed off.

private Handler mHandler = new Handler();
public static final int ONE_MINUTE = 60000;
private Runnable periodicTask = new Runnable() {
    public void run() {
        mHandler.postDelayed(periodicTask, TIME_DELAY * ONE_MINUTE);
        /* call your database code here */
    }
};

I had the delay be user-configurable in minutes.

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