如何从服务类启动新意图(android)

发布于 2024-10-29 05:14:42 字数 402 浏览 1 评论 0原文

可能的重复:
如何从服务启动 Activity?

对我的行为表示歉意提前术语我对android编程很陌生。

我正在尝试做的事情:

我正在尝试创建一个闹钟应用程序。

到目前为止我所拥有的:

到目前为止我有一个类在 5 秒后启动警报服务(这工作正常)。然后,当这个服务类启动时,我希望它启动另一个类(称为 AlarmRinging),但这就是我遇到困难的地方。

任何答案或查看途径将不胜感激。

Possible Duplicate:
How to start an Activity from a Service?

apologies for my terminology in advance I am very new to android programming.

What i am trying to do:

i am trying to create an alarm clock application.

What i have so far:

so far i have a class that starts an alarm service after 5 seconds (this works fine). then when this service class starts i want it to start another class (called AlarmRinging) but this is where I come unstuck.

Any answers or avenues to check out would be greatly appreciated.

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

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

发布评论

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

评论(1

凉世弥音 2024-11-05 05:14:42

android.app.Serviceandroid.app.Context 的后代,因此您可以直接使用 startActivity。但是,由于您在任何活动之外启动此操作,因此您需要在意图上设置 FLAG_ACTIVITY_NEW_TASK 标志。

例如:

Intent i = new Intent();
i.setClass(this, MyActivity.class);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(i);

其中 this 是您的服务。

android.app.Service is descendant of android.app.Context so you can use startActivity directly. However since you start this outside any activity you need to set FLAG_ACTIVITY_NEW_TASK flag on the intent.

For example:

Intent i = new Intent();
i.setClass(this, MyActivity.class);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(i);

where this is your service.

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