有没有人知道如何忽略Android中的Activity生命周期?

时间:2011-12-01 08:04:39

标签: android android-activity ignore

我只想忽略活动生命周期。

我的意思是我想让Activity始终位于窗口之上。

即使执行了其他活动或应用程序,也不会破坏活动。

请给我一些建议。谢谢。

3 个答案:

答案 0 :(得分:2)

不,你不能这样做。它违反了Android框架。

如果您只想在后台执行某些操作,则应使用Service

答案 1 :(得分:1)

你的话真的很矛盾。

  1. 你想忽略活动生命周期,这意味着你想要开箱即用的

  2. The Activity is not be destroyed even if the other Activity or App is executed.< ---是的,当然,从活动A开始活动B,活动A仍然活着,根据活动生命周期:http://developer.android.com/reference/android/app/Activity.html#ActivityLifecycle

答案 2 :(得分:0)

如果不更改Android代码,则无法执行此操作。