0

当我的应用程序处于活动状态时,我应该如何处理来电?我的应用程序会终止还是暂停?如果你能举一些例子就好了。谢谢。

4

2 回答 2

1

Android Dev 网站上的处理运行时更改一文中详细讨论了该主题。

简而言之,它将调用配置更改,就像更改屏幕方向一样,您的 Activity 可以被销毁和重新创建。你应该能够处理它。

您可以通过执行屏幕方向或使用 2 个模拟器并互相调用来测试它。

于 2013-02-05T06:52:53.670 回答
0

If you handle the Activity lifecycle methods correctly, as explained in http://developer.android.com/training/basics/activity-lifecycle/pausing.html, your Activity will be able to behave correctly if it's at the top of the stack when an incoming call is received.

于 2013-02-05T06:51:10.973 回答