android:如何将活动发送到后台&从那里给她打电话
我正在创建一些测试应用程序“时间跟踪器”应用程序,例如秒表,因此我启动应用程序转到启动时间计数器的活动,现在我需要一些功能将我的活动发送到后台或最小化或隐藏,并在一段时间后调用再次进行此活动并停止她的计数器以度过时间段。
我怎样才能将 Activity 发送到后面并将她调用到前面但不停止计时器计数器?
I am in process of creating some test application "Time Tracker" app like stopwatch so I start app go to Activity where I start time counter and now I need some functionality to send my activity to background or minimize or hide and after some period to call this activity again and stop her counter to get passed time period .
How can I send Activity to back and call her to front but not to stop timer counter ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为使用服务是最好的方法。然后,您可以对 Activity 调用
finish()
,并且服务可以在达到特定时间时启动您的应用程序。Using a Service would be the best way I guess. You can than call
finish()
on your Activity and the Service can start your application when a specific time was reached.