• forceStopPackage与killBackgroundProcesses方法


    最近了解一键清理功能,需要实现强制关闭进程的功能。下面介绍下killBackgroundProcesses()方法和forceStopPackage()方法。

    killBackgroundProcesses()

    ActivityManager的killBackgroundProcesses方法,可以立即杀死与指定包相关联的所有后台进程,这与内核杀死那些进程回收内存是一样的,但这些进程如果在将来某一时刻需要使用,会重新启动。该方法需要权限android.permission.KILL_BACKGROUND_PROCESSES。源码解释如下:

    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. }  

    forceStopPackage()

    调用此方法,系统会强制停止与指定包关联的所有事情,将会杀死使用同一个uid的所有进程,停止所有服务,移除所有activity。所有注册的定时器和通知也会移除。forceStopPackage方法源码解释如下:

    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.  * @param userId The user for which the running package is to be stopped. 
    15.  * 
    16.  * @hide This is not available to third party applications due to 
    17.  * it allowing them to break other applications by stopping their 
    18.  * services, removing their alarms, etc. 
    19.  */  
    20. public void forceStopPackageAsUser(String packageName, int userId) {  
    21.     try {  
    22.         ActivityManagerNative.getDefault().forceStopPackage(packageName, userId);  
    23.     } catch (RemoteException e) {  
    24.     }  
    25. }  
    26.   
    27. /** 
    28.  * @see #forceStopPackageAsUser(String, int) 
    29.  * @hide 
    30.  */  
    31. public void forceStopPackage(String packageName) {  
    32.     forceStopPackageAsUser(packageName, UserHandle.myUserId());  
    33. }  


    注意使用forceStopPackage方法时,需要添加权限android.permission.FORCE_STOP_PACKAGES。同时注意该方法是隐藏的方法,需要使用反射机制调用。如下:

      1. ActivityManager mActivityManager = (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);  
      2. Method method = Class.forName("android.app.ActivityManager").getMethod("forceStopPackage", String.class);  
      3. method.invoke(mActivityManager, packageName);  //packageName是需要强制停止的应用程序包名 
  • 相关阅读:
    windows(win10)下的mysql解压版安装
    微信和QQ网页授权登录
    图片前端重绘前端压缩和自动调整旋转
    时间的显示
    magento中文语言包的使用
    div垂直居中(js)
    centOS IP能ping通但是域名ping不通
    python3 使用pyinstaller打包exe 指定虚拟路径模块
    Flask 多app案例
    将excel的资产数据生成二维码图片
  • 原文地址:https://www.cnblogs.com/Free-Thinker/p/7880343.html
Copyright © 2020-2023  润新知