将 Activity 置于前台
在我的活动类中,我调用启动服务,服务工作正常。在服务中,基于一些测试,我想将活动置于前台(启动服务的活动)。在服务类中编写什么来获取前台活动。我需要它前台,因为如果用户打开另一个应用程序,那么我的活动将转到后台。提前致谢
In my activity class i call start service and service works fine.In the service on the basis of some test i want to bring the activity in the foreground(the activity that start the service).What to write in the service class to get the activity in foreground.I need it foreground because if user opens another application then my activity goes to background.Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当你开始你的活动时你应该使用这个
intent.setFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
you should use this when you start you activity
intent.setFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);