标签:android des blog java 使用 strong
public final void startForeground (int id, Notification notification) Added in API level 5 Make this service run in the foreground, supplying the ongoing notification to be shown to the user while in this state. By default services are background, meaning that if the system needs to kill them to reclaim more memory (such as to display a large page in a web browser), they can be killed without too much harm. You can set this flag if killing your service would be disruptive to the user, such as if your service is performing background music playback, so the user would notice if their music stopped playing.
2、在清单文件里面假冒进程名
中可以通过android:process=""来指定进程名,在直接看360等软件杀的时候发现他对某些进程名不感冒。(不知道是不是有意的还是无意的)。
如:你把你的android:process="com.android.acore"
这种android的核心进程后,在他所列出要杀的名单中就不存在了 。很多手机管家也会不推荐杀死此类进程。
3、回收后再次调起
由于回收时系统会调用onDestroy(),这里可操作空间就很大了。随便一想就有三种方式。
4、通过一些系统常见广播来调起服务
比如监听屏幕解锁、电量变化、网络变化等,来调起自己的服务,至少可以保证服务挂了很快能起来。
5、通过和其他一些服务的关联来保证自己的服务不被回收
比如一个常用的第三方推送,会有一个常驻进程,并且被各个品牌设备作为白名单,可以通过和他们建立联系,让白名单的进程来实时调起自己的服务
标签:android des blog java 使用 strong
原文地址:http://www.cnblogs.com/LiuSiyuan/p/3798800.html