一.在onStartCommand方法,返回START_STICKY
1笼痹、START_STICKY
在運行onStartCommand后service進(jìn)程被kill后畏铆,那將保留在開始狀態(tài)默伍,但是不保留那些傳入的intent传货。不久后service就會再次嘗試重新創(chuàng)建,因為保留在開始狀態(tài)莉给,在創(chuàng)建 service后將保證調(diào)用onstartCommand毙石。如果沒有傳遞任何開始命令給service,那將獲取到null的intent颓遏。
2徐矩、START_NOT_STICKY
在運行onStartCommand后service進(jìn)程被kill后,并且沒有新的intent傳遞給它叁幢。Service將移出開始狀態(tài)滤灯,并且直到新的明顯的方法(startService)調(diào)用才重新創(chuàng)建。因為如果沒有傳遞任何未決定的intent那么service是不會啟動,也就是期間onstartCommand不會接收到任何null的intent鳞骤。
3窒百、START_REDELIVER_INTENT
在運行onStartCommand后service進(jìn)程被kill后,系統(tǒng)將會再次啟動service豫尽,并傳入最后一個intent給onstartCommand篙梢。直到調(diào)用stopSelf(int)才停止傳遞intent。如果在被kill后還有未處理好的intent美旧,那被kill后服務(wù)還是會自動啟動渤滞。因此onstartCommand不會接收到任何null的intent。
二.通過Notification 提高進(jìn)程優(yōu)先級
在onStartCommand中創(chuàng)建Notification是Service變成前臺進(jìn)程陈症,代碼如下:
Notification notification = new Notification(R.drawable.ic_launcher,
getString(R.string.app_name), System.currentTimeMillis());
PendingIntent pendingintent = PendingIntent.getActivity(this, 0,
new Intent(this, AppMain.class), 0);
notification.setLatestEventInfo(this, "uploadservice", "請保持程序在后臺運行",
pendingintent);
startForeground(0x111, notification);
三.onDestroy方法里重啟service
service +broadcast 方式蔼水,就是當(dāng)service走ondestory的時候震糖,發(fā)送一個自定義的廣播录肯,當(dāng)收到廣播的時候,重新啟動service吊说;
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.USER_PRESENT" />
<action android:name="com.dbjtech.waiqin.destroy" />//這個就是自定義的action
</intent-filter>
</receiver>
在onDestroy時:
@Override
public void onDestroy() {
stopForeground(true);
Intent intent = new Intent("com.dbjtech.waiqin.destroy");
sendBroadcast(intent);
super.onDestroy();
}
在BootReceiver里
public class BootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals("com.dbjtech.waiqin.destroy")) {
//TODO
//在這里寫重新啟動service的相關(guān)操作
startUploadService(context);
}
}
}
也可以直接在onDestroy()里startService
@Override
public void onDestroy() {
Intent sevice = new Intent(this, MainService.class);
this.startService(sevice);
super.onDestroy();
}