如何从服务类启动新意图(android)
可能的重复:
如何从服务启动 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
android.app.Service 是 android.app.Context 的后代,因此您可以直接使用 startActivity。但是,由于您在任何活动之外启动此操作,因此您需要在意图上设置 FLAG_ACTIVITY_NEW_TASK 标志。
例如:
其中 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:
where this is your service.