Android-Service的保活方法

39次阅读

共计 2767 个字符,预计需要花费 7 分钟才能阅读完成。

支持原文:http://tryenough.com/android-…

保活 Service 可从两方面考虑:
一. 改变 Service 自身的方法
1. 提高 Service 的优先级
在 AndroidManifest.xml 文件中对于 intent-filter 可以通过 android:priority = “1000” 这个属性设置最高优先级,1000 是最高值,如果数字越小则优先级越低,同时适用于广播。
<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 即将销毁的时候重新启动
支持原文:http://tryenough.com/android-…

可以直接在 onDestroy()里 startService
@Override
public void onDestroy() {

Intent sevice = new Intent(this, MainService.class);
this.startService(sevice);

super.onDestroy();
}
也可以用 service +broadcast 方式启动:
onDestroy 方法里重启 service, 当 service 走 ondestory 的时候,发送一个自定义的广播,当收到广播的时候,重新启动 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” />// 这个就是自定义的 action
</intent-filter>
</receiver>
在 onDestroy 时:
@Override
public void onDestroy() {
stopForeground(true);
Intent intent = new Intent(“com.dbjtech.waiqin.destroy”);
sendBroadcast(intent);
super.onDestroy();
}
在 BootReceiver 里
支持原文:http://tryenough.com/android-…

public class BootReceiver extends BroadcastReceiver {

@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals(“com.dbjtech.waiqin.destroy”)) {
//TODO
// 在这里写重新启动 service 的相关操作
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 进程优先级在 onStartCommand 方法内添加如下代码:
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);
二. 利用系统特性的方法
支持原文:http://tryenough.com/android-…

1. 监听系统特殊事件
通过系统的一些广播,比如:手机重启、界面唤醒、应用状态改变等等监听并捕获到,然后判断我们的 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=”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(“ 手机开机了 ….”);
startUploadService(context);
}
if (Intent.ACTION_USER_PRESENT.equals(intent.getAction())) {
startUploadService(context);
}
}
2. 特殊手机监听特殊推送,例如小米手机注册小米推送
支持原文:http://tryenough.com/android-…

正文完
 0