在特定时间执行函数

发布于 2024-11-08 21:05:10 字数 499 浏览 0 评论 0原文

我想在 TimePicker 选择的特定时间执行某些功能。

我可以像这样使用处理程序:

Handler myHandler = new DoSomething();
Message m = new Message();
myHandler.sendMessageDelayed(m, delay);

class DoSomething extends Handler {
    @Override
    public void handleMessage(Message msg) {
      MyObject o = (MyObject) msg.obj;
      //do something here
    }
}

并加载“延迟”参数:picked_wanted_hour - current_hour 或者以一定的时间间隔检查当前时间,并在时间到来时调用该函数。

但是,是否有任何类似处理程序的对象可以花费特定时间并在那时调用操作?

提前致谢。

I want to execute some function at specific hour picked by TimePicker.

I can use Handler like this:

Handler myHandler = new DoSomething();
Message m = new Message();
myHandler.sendMessageDelayed(m, delay);

class DoSomething extends Handler {
    @Override
    public void handleMessage(Message msg) {
      MyObject o = (MyObject) msg.obj;
      //do something here
    }
}

And load the "delay" param with: picked_wanted_hour - current_hour
OR check for the current time at some interval and invoke the function when the time comes.

But, is there any handler-like object that can take a specific time and invoke the operation at that time?

Thanks in advance.

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

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

发布评论

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

评论(2

甜警司 2024-11-15 21:05:10

您可以使用 AlarmManager 服务:

http://developer.android.com/reference/android /app/AlarmManager.html

简要示例:

Intent intent = new Intent(this,<Activity.class/ or type of broadcast receiver>);
PendingIntent pi = PendingIntent.get(...)
AlarmManager am = getSystemService(Context.ALARM_SERVICE);
int delay = 1000; // 1 second
am.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + delay, pi);

有关 PendingIntent 的更多信息
http://developer.android.com/reference/android/app/PendingIntent.html

You can use AlarmManager service :

http://developer.android.com/reference/android/app/AlarmManager.html

A bref sample:

Intent intent = new Intent(this,<Activity.class/ or type of broadcast receiver>);
PendingIntent pi = PendingIntent.get(...)
AlarmManager am = getSystemService(Context.ALARM_SERVICE);
int delay = 1000; // 1 second
am.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + delay, pi);

more infos on PendingIntent
http://developer.android.com/reference/android/app/PendingIntent.html

何以心动 2024-11-15 21:05:10

为什么不使用处理程序本身?只需传递 timePickerTime - currentTime 作为延迟即可。
还有 Timer 方法 schedule(TimerTask task, Date when )

Why don't you use handler itself? Just pass timePickerTime - currentTime as a delay.
There's also Timer with method schedule(TimerTask task, Date when).

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