焙嫫唬活Service可從兩方面考慮:
一.改變Service自身的方法
1.提高Service的優(yōu)先級(jí)
在AndroidManifest.xml文件中對于intent-filter可以通過android:priority = "1000"這個(gè)屬性設(shè)置最高優(yōu)先級(jí)式散,1000是最高值烹吵,如果數(shù)字越小則優(yōu)先級(jí)越低,同時(shí)適用于廣播详囤。
<service
android:name="com.dbjtech.acbxt.waiqin.UploadService"
android:enabled="true" >
<intent-filter android:priority="1000" >
<action android:name="com.dbjtech.myservice" />
</intent-filter>
</service>
2.在Service即將銷毀的時(shí)候重新啟動(dòng)
可以直接在onDestroy()里startService
@Override
public void onDestroy() {
Intent sevice = new Intent(this, MainService.class);
this.startService(sevice);
super.onDestroy();
}
也可以用service +broadcast 方式啟動(dòng):
onDestroy方法里重啟service,當(dāng)service走ondestory的時(shí)候财骨,發(fā)送一個(gè)自定義的廣播,當(dāng)收到廣播的時(shí)候藏姐,重新啟動(dòng)service隆箩;
<receiver android:name="com.dbjtech.acbxt.waiqin.BootReceiver" >
<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" />//這個(gè)就是自定義的action
</intent-filter>
</receiver>
在onDestroy時(shí):
@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
//在這里寫重新啟動(dòng)service的相關(guān)操作
startUploadService(context);
}
}
}
3.onStartCommand方法,返回START_STICKY
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
flags = START_STICKY;
return super.onStartCommand(intent, flags, startId);
}
4.提升service進(jìn)程優(yōu)先級(jí)
在onStartCommand方法內(nèi)添加如下代碼:
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", "請保持程序在后臺(tái)運(yùn)行",
pendingintent);
startForeground(0x111, notification);
二.利用系統(tǒng)特性的方法
1.監(jiān)聽系統(tǒng)特殊事件
通過系統(tǒng)的一些廣播羔杨,比如:手機(jī)重啟捌臊、界面喚醒、應(yīng)用狀態(tài)改變等等監(jiān)聽并捕獲到兜材,然后判斷我們的Service是否還存活理澎,別忘記加權(quán)限啊。
<receiver android:name="com.dbjtech.acbxt.waiqin.BootReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.USER_PRESENT" />
<action android:name="android.intent.action.PACKAGE_RESTARTED" />
<action android:name="com.dbjtech.waiqin.destroy" />
</intent-filter>
</receiver>
BroadcastReceiver中:
@Override
public void onReceive(Context context, Intent intent) {
if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) {
System.out.println("手機(jī)開機(jī)了....");
startUploadService(context);
}
if (Intent.ACTION_USER_PRESENT.equals(intent.getAction())) {
startUploadService(context);
}
}
2.特殊手機(jī)監(jiān)聽特殊推送曙寡,例如小米手機(jī)注冊小米推送