避免进程被kill

1.在Service的onDestroy()中重启Service,或者广播中

public void onDestroy()
{
Intent localIntent = new Intent();
localIntent.setClass(this, MyService.class); // 销毁时重新启动Service
this.startService(localIntent);
}

在一段时间后才会启动

2.提升service的优先级,程序签名,或adb push到system\app。在其Manifest.xml文件中设置persistent属性为true,则可使其免受out-of-memory killer的影响,永久性应用。


   ...


保证进程不被kill

详解链接:说说Android应用的persistent属性

你可能感兴趣的:(避免进程被kill)