问题描述
Android 2.2的版本说明刚刚被释放。 ActivityManager.restartPackage方式已经去precated和描述是:
Android 2.2 release notes have just been released. ActivityManager.restartPackage method has been deprecated and the description is:
这里的previous行为不再提供给应用程序,因为它允许他们通过删除警报打破其他应用程序,停止他们的服务等。
2.2而不是通过引入新的方法ActivityManager.killBackgroundProcesses给出了讨厌的任务杀手应用另一种工具。
Instead 2.2 has given another tool for pesky "task killer" apps by introducing new ActivityManager.killBackgroundProcesses method.
更多信息
有人能解释ActivityManager.killBackgroundProcesses是否会杀了我们预定的报警?
Can someone explain whether ActivityManager.killBackgroundProcesses will kill our scheduled alarms?
如果是这样,去precating ActivityManager.restartPackage是毫无意义的任务杀手现在会滥用ActivityManager.killBackgroundProcesses。
If so, deprecating ActivityManager.restartPackage was pointless as "task killer" will now abuse ActivityManager.killBackgroundProcesses.
推荐答案
我已经测试,这种新的杀法:报警没有被杀死。服务重新启动。
I have made tests with this new killing method : alarms are not killed. services are restarting.
这篇关于Android 2.2的德precates restartPackage但增加了另一个头痛的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!