首页 > 移动平台 > 详细

android:强制关闭其他应用

时间:2014-08-01 18:45:32      阅读:378      评论:0      收藏:0      [点我收藏+]

强制关闭其他应用,可以使用ActivityManager,首先需要获取(ActivityManager)getSystemService(Context.ACTIVITY_SERVICE);

然后可以调用其函数来进行关闭操作,目前来看有两种方法:

1. void killBackgroundProcesses(String packageName):此方法在android官网的API中有介绍,在kill之后,被关闭的应用会被重新启动。

Have the system immediately kill all background processes associated with the given package.  This is the same as the kernel killing those processes to reclaim memory; the system will take care of restarting these processes in the future as needed.

 

使用:需要权限:<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />

 

2. void forceStopPackage(String packageName):此方法目前没有出现在android官网的API中,不知为何啊。。。。。。

 

使用:

     需要权限:android:sharedUserId="android.uid.system"

      <uses-permission android:name="android.permission.FOCE_STOP_PACKAGES" />

自己实现的代码:

ActivityManager activityManager = (ActivityManager)getSystemService(Context.ACTIVITY_SERVICE);
activityManager.forceStopPackage("com.android.scan");

 

推荐使用第2种。。。。。。。。。。。。。

 

参考:http://blog.csdn.net/huxueyan521/article/details/8921976

         http://blog.csdn.net/mingli198611/article/details/7057615

android:强制关闭其他应用,布布扣,bubuko.com

android:强制关闭其他应用

原文:http://www.cnblogs.com/luow/p/3885349.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!