android如何让service不被杀死-提升进程优先级

1.在service中重写下面的方法,这个方法有三个返回值, START_STICKY是service被kill掉后自动重写建立 
[代码]java代码: 
@Override 
public int onStartCommand(Intent intent, int flags, int startId) { 
return START_STICKY; 
}---------------- 
@Override 
public int onStartCommand(Intent intent, int flags, int startId) { 
// TODO Auto-generated method stub 
Log.v("TrafficService","startCommand"); 


flags = START_STICKY; 
return super.onStartCommand(intent, flags, startId); 
// return START_REDELIVER_INTENT; 

2.在Service的onDestroy()中重启Service. 
public void onDestroy() {  
Intent localIntent = new Intent(); 
localIntent.setClass(this, MyService.class); //销毁时从新启动Service 
this.startService(localIntent); 



用qq管家杀掉进程的时候,调用的是系统自带的强制kill功能(即settings里的),在kill时,会将应用的整个进程停掉,固然包括service在内,若是在running里将service强制kill掉,显示进程还在。无论是kill整个进程仍是只kill掉进应用的 service,都不会从新启动service。不知道你是怎么实现重启的,实在是不解。 在eclipse中,用stop按钮kill掉进程的时候,却是会重启service 
KILL问题: 
1. settings 中stop service 
onDestroy方法中,调用startService进行Service的重启。 
2.settings中force stop 应用 
捕捉系统进行广播(action为android.intent.action.PACKAGE_RESTARTED) 
3. 借助第三方应用kill掉running task 
提高service的优先级 
service开机启动 
今天咱们主要来探讨android怎么让一个service开机自动启动功能的实现。Android手机在启动的过程当中会触发一个Standard Broadcast Action,名字叫android.intent.action.BOOT_COMPLETED(记得只会触发一次呀),在这里咱们能够经过构建一个广播接收者来接收这个这个action.下面我就来简单写如下实现的步骤:  
第一步:首先建立一个广播接收者,重构其抽象方法 onReceive(Context context, Intent intent),在其中启动你想要启动的Service或app。 
[代码]java代码: 
import android.content.BroadcastReceiver;  
import android.content.Context;  
import android.content.Intent;  
import android.util.Log;  


public class BootBroadcastReceiver extends BroadcastReceiver {  
//重写onReceive方法  
@Override  
public void onReceive(Context context, Intent intent) {  
//后边的XXX.class就是要启动的服务  
Intent service = new Intent(context,XXXclass);  
context.startService(service);  
Log.v("TAG", "开机自动服务自动启动.....");  
//启动应用,参数为须要自动启动的应用的包名 
Intent intent = getPackageManager().getLaunchIntentForPackage(packageName); 
context.startActivity(intent );  
}  


}  
第二步:配置xml文件,在re 
ceiver接收这种添加intent-filter配置  
[代码]java代码: 
<receiver android:name="BootBroadcastReceiver">  
<intent-filter>  
<action android:name="android.intent.action.BOOT_COMPLETED"></action>  
<category android:name="android.intent.category.LAUNCHER" />  
</intent-filter>  
</receiver> 


第三步:添加权限 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />  
如何实现一个不会被杀死的进程 
看Android的文档知道,当进程长期不活动,或系统须要资源时,会自动清理门户,杀死一些Service,和不可见的Activity等所在的进程。 
可是若是某个进程不想被杀死(如数据缓存进程,或状态监控进程,或远程服务进程),应该怎么作,才能使进程不被杀死。 
add android:persistent="true" into the <application> section in your AndroidManifest.xml 
切记,这个 不可滥用,系统中用这个的service,app一多,整个系统就完蛋了。 
目前系统中有phone等很是有限的,必须一直活着的应用在试用。 
提高service优先级的方法 
Android 系统对于内存管理有本身的一套方法,为了保障系统有序稳定的运信,系统内部会自动分配,控制程序的内存使用。当系统以为当前的资源很是有限的时候,为了保 证一些优先级高的程序能运行,就会杀掉一些他认为不重要的程序或者服务来释放内存。这样就能保证真正对用户有用的程序仍然再运行。若是你的 Service 碰上了这种状况,多半会先被杀掉。但若是你增长 Service 的优先级就能让他多留一会,咱们能够用 setForeground(true) 来设置 Service 的优先级。  
  为何是 foreground ? 默认启动的 Service 是被标记为 background,当前运行的 Activity 通常被标记为 foreground,也就是说你给 Service 设置了 foreground 那么他就和正在运行的 Activity 相似优先级获得了必定的提升。当让这并不能保证你得 Service 永远不被杀掉,只是提升了他的优先级。  
  从Android 1.5开始,一个已启动的service能够调用startForeground(int, Notification)将service置为foreground状态,调用stopForeground(boolean)将service置为 background状态。  
  咱们会在调用startForeground(int, Notification)传入参数notification,它会在状态栏里显示正在进行的foreground service。background service不会在状态栏里显示。 
  在Android 1.0中,将一个service置为foreground状态:  
  setForeground(true);  
  mNM.notify(id, notification);  
  将一个service置为background状态:  
  mNM.cancel(id);  
  setForeground(false);  
  对比看出,在1.0 API中调用setForeground(boolean)只是简单的改变service的状态,用户不会有任何觉察。新API中强制将 notification和改变service状态的动做绑定起来,foreground service会在状态栏显示,而background service不会。  
  Remote service controller & binding  
  跨进程调用Service。暂时不研究。  
如何防止Android应用中的Service被系统回收? 不少朋友都在问,如何防止Android应用中的Service被系统回收?下面简单解答一下。 
对于Service被系统回收,通常作法是经过提升优先级能够解决,在AndroidManifest.xml文件中对于intent-filter能够经过 android:priority = "1000"这个属性设置最高优先级,1000是最高值,若是数字越小则优先级越低,同时实用于广播,推荐你们若是你的应用很重要,能够考虑经过系统经常使用intent action来触发。 




下面这是从另外的网页上看到的,一并转过来了:http://goo.gl/eEfBup java

为了提升 咱们的Activity中的线程的
线程优先级(Thread-Priority),咱们须要在AndroidManifest.xml 中使用 'uses-permission' 这样作:
XML: 
          <uses-permission id="android.permission.RAISED_THREAD_PRIORITY"/>

  如今你能够在你的Activity中使用如下代码改变或提升任何线程的优先级:
Java: 
          import android.os.Process;
// ...

// -----------------------------------
// Set the priority of the calling thread, based on Linux priorities:
// -----------------------------------

// Changes the Priority of the calling Thread!
Process.setThreadPriority(12);
// Changes the Priority of passed Thread (first param)
Process.setThreadPriority(Process.myTid(), 12);

  这里 range 的范围是 -20 (高) 到 +19 (低). 不要选得 过高  

  最好使用预先定义在 android.os.Process 的constants :
Java: 
          // Lower is 'more impotant'
Process.THREAD_PRIORITY_LOWEST = 19
Process.THREAD_PRIORITY_BACKGROUND = 5
Process.THREAD_PRIORITY_DEFAULT = 0
Process.THREAD_PRIORITY_FOREGROUND = -5
Process.THREAD_PRIORITY_DISPLAY = -10
Process.THREAD_PRIORITY_URGENT_DISPLAY = -15 android

相关文章
相关标签/搜索