Android之关于killBackgroundProcesses()函数,杀不死进程的解释

Posted LVXIANGAN

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android之关于killBackgroundProcesses()函数,杀不死进程的解释相关的知识,希望对你有一定的参考价值。

最近在做内存加速性质的APP,发现用killBackgroundProcesses()函数来杀一些进程总是杀不死。

经人提醒得知,不同进程的程序可能有相同的UID:比如微信,一般而言,微信有两个进程在跑:

com.tencent.mm 和 com.tencent.mm:push

无论你单独杀死哪个进程,另外一个进程在监测到兄弟进程被杀死后,就会立即启动被杀死的进程。

所以单独杀死其中一个是无用的,解决的思路就是:将拥有同一个UID的进程全部杀死。



后来补充:

通过查看ActivityManager的源码发现,真正杀不死的原因是下面这个解释:

[java]  view plain  copy
  1. /** 
  2.      * Have the system immediately kill all background processes associated 
  3.      * with the given package.  This is the same as the kernel killing those 
  4.      * processes to reclaim memory; the system will take care of restarting 
  5.      * these processes in the future as needed. 
  6.      *  
  7.      * <p>You must hold the permission 
  8.      * @link android.Manifest.permission#KILL_BACKGROUND_PROCESSES to be able to 
  9.      * call this method. 
  10.      *  
  11.      * @param packageName The name of the package whose processes are to 
  12.      * be killed. 
  13.      */  
  14.     public void killBackgroundProcesses(String packageName)   
  15.         try   
  16.             ActivityManagerNative.getDefault().killBackgroundProcesses(packageName,  
  17.                     UserHandle.myUserId());  
  18.          catch (RemoteException e)   
  19.           
  20.       

系统会在需要的时候再次重启被我们杀死的进程。


真正彻底杀死系统进程的方法是:


[java]  view plain  copy
  1. /** 
  2.      * Have the system perform a force stop of everything associated with 
  3.      * the given application package.  All processes that share its uid 
  4.      * will be killed, all services it has running stopped, all activities 
  5.      * removed, etc.  In addition, a @link Intent#ACTION_PACKAGE_RESTARTED 
  6.      * broadcast will be sent, so that any of its registered alarms can 
  7.      * be stopped, notifications removed, etc. 
  8.      *  
  9.      * <p>You must hold the permission 
  10.      * @link android.Manifest.permission#FORCE_STOP_PACKAGES to be able to 
  11.      * call this method. 
  12.      *  
  13.      * @param packageName The name of the package to be stopped. 
  14.      *  
  15.      * @hide This is not available to third party applications due to 
  16.      * it allowing them to break other applications by stopping their 
  17.      * services, removing their alarms, etc. 
  18.      */  
  19.     public void forceStopPackage(String packageName)   
  20.         try   
  21.             ActivityManagerNative.getDefault().forceStopPackage(packageName,  
  22.                     UserHandle.myUserId());  
  23.          catch (RemoteException e)   
  24.           
  25.       

而该方法是@hide , 并且,注释也说明得很清楚了:第三方应用不能调用该方法。

如果你想在自己的第三方app中使用该方法,那是一件很困难的事情,你不仅得获取一个操作系统的签名,还得把自己的应用设成

android:sharedUserId="android.uid.system" 权限。

这种情况作为第三方应用无疑是不可能实现的。由于该函数的功能是如此强大:该函数会停止所有和该程序包相关的:同uid程序、相关services、相关Activity等。

这也应该可以看成是Android的一种安全机制。如果第三方应用随便可以调用该函数,那么第三方应用就可以肆意来阻止竞品的程序启动以及其他破坏性工作。

一般运用这个方法来查杀进程的基本都是操作系统本身来实现靠谱一些,比如小米的MIUI,阿里的YunOS,魅族的Flyme等。

以上是关于Android之关于killBackgroundProcesses()函数,杀不死进程的解释的主要内容,如果未能解决你的问题,请参考以下文章

使用Android Studio调试系统应用之TvSettings:关于jaraarsupportLibrary Module的总结

关于unity android开发的手指触屏常用操作之Touch

Android之关于killBackgroundProcesses()函数,杀不死进程的解释

关于蓝牙开发之数据缓存问题(脏数据)

Android四大组件之BroadCast

关于Android注解这些基础,这些都不知道?历时半个月呕心之作