当电话中断应用程序时,Android 应用程序会发生什么情况?
我正在开发一个应用程序,在我的一项活动中我显示了一个进度对话框。我已经对其进行了管理,以便它在旋转过程中正确显示,并且我认为这也可以处理电话呼叫的情况,但是当我用电话测试它时,对话框消失了。那么电话呼叫到底对应用程序做了什么以及它是应用程序生命周期的一部分吗?
I am working on an app and in one of my activities I display a progressdialog. I have managed it so that it displays correctly during rotations, and I thought that would handle the case of a phone call too, but when I test it with a phone call the dialog goes away. So what exactly does the phone call do to the application and how is a part of the application lifecycle?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
onPause 和 onStop 被调用,onDestroy 可能被调用,但你不能依赖它。
onPause and onStop are called, onDestroy may be called but you can't rely on it.
长按主页按钮并切换到另一个应用程序......基本上是一样的事情。
http://developer.android.com/reference/android/app/Activity.html
Long-press your home button and switch to another application... its basically the same thing.
http://developer.android.com/reference/android/app/Activity.html