避免进程被kill
2017-06-06 本文已影响28人
傀儡世界
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的影响,永久性应用。
<application android:name="PhoneApp"
android:persistent="true"
android:label="@string/dialerIconLabel"
android:icon="@drawable/ic_launcher_phone">
...
</application>
保证进程不被kill