Android防止进程被第三方软件杀死
http://blog.csdn.net/wangliang198901/article/details/12342845 http://stackoverflow.com/questions/3856767/android-keeping-a-background-service-alive-preventing-process-death http://www.cnblogs.com/cc-Cheng/p/3146143.html 调用 @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.source_activity); startService(new Intent(this, RunService.class)); } 定义 public class RunService extends Service { @Override public void onCreate() { se...