android杀进程方法

源文: http://www.cnblogs.com/275095923/archive/2011/09/05/2167958.html

Android 结束进程,关闭程序的方法,经过这几天的调研,发现了Android结束一个进程的方法

即采用下面这个类

void android.app.ActivityManager.restartPackage(String packageName)

public void restartPackage (String packageName)

Since: API Level 3

Have the system perform a force stop of everything associated with the given application package. All processes that share its uid will be killed, all services it has running stopped, all activities removed, etc. In addition, a ACTION_PACKAGE_RESTARTED broadcast will be sent, so that any of its registered alarms can be stopped, notifications removed, etc.

You must hold the permission RESTART_PACKAGES to be able to call this method.

Parameters
packageName
The name of the package to be stopped.


使用这个类的具体源代码

Java代码
view plain
final ActivityManager am = (ActivityManager)getSystemService(Context.ACTIVITY_SERVICE);
am.restartPackage(getPackageName());


再加上uses-permission

Xml代码
view plain
<uses-permission android:name="android.permission.RESTART_PACKAGES"></uses-permission>


结束进程还有android.os.Process.killProcess(pid)只能终止本程序的进程,无法终止其它的

public static final void killProcess (int pid)

Kill the process with the given PID. Note that, though this API allows us to request to kill any process based on its PID, the kernel will still impose standard restrictions on which PIDs you are actually able to kill. Typically this means only the process running the caller's packages/application and any additional processes created by that app; packages sharing a common UID will also be able to kill each other's processes.


public void finish ()

Call this when your activity is done and should be closed. The ActivityResult is propagated back to whoever launched you via onActivityResult().

这是结束当前activity的方法



android2.2版本之后则不能再使用restartPackage()方法,而应该使用killBackgroundProcesses()方法

manager.killBackgroundProcesses(getPackageName());

view plain
ActivityManager manager = (ActivityManager)getSystemService(ACTIVITY_SERVICE);
manager.killBackgroundProcesses(getPackageName());

加入权限
view plain
//需要在xml中加入权限声明
<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES"/>

另外,在android2.2以后,如果服务在ondestroy里加上了start自己,用kill backgroudprocess通常无法结束自己。

还有一种最新发现的方法,利用反射调用forceStopPackage来结束进程
代码如下

view plain
Method forceStopPackage = am.getClass().getDeclaredMethod("forceStopPackage", String.class);
forceStopPackage.setAccessible(true);
forceStopPackage.invoke(am, yourpkgname);

需要在manifest里加上shareduid定义
view plain
android:sharedUserId="android.uid.system"

另外加上权限
view plain
<uses-permission android:name="android.permission.FORCE_STOP_PACKAGES"></uses-permission>

并且采用系统platform签名

因为需要用FORCE_STOP_PACKAGES权限,该权限只赋予系统签名级程序
即可实现强制停止指定程序

更多相关文章

  1. Android EditText不显示光标的解决方法
  2. 利用oom_adj提高Application所在进程的优先级
  3. EditText不显示光标的解决方法
  4. android ScrollView边界阴影方法
  5. 转:Android 发送短信的方法
  6. android关于getLayoutParams()方法源码译文(部分)
  7. Android Handler和HandlerThread使用方法
  8. 获取 + 查看 Android 源码的 方法
  9. android中线程进程模型

随机推荐

  1. 在Android应用中集成YouTube视频播放功能
  2. android使用html开发软件界面
  3. Android第一行代码学习笔记三----广播
  4. Android布局之LinearLayout weight属性的
  5. Android学习系列(29)--App调试的几个命令
  6. Android Zipalign工具优化Android APK应
  7. Android实现宫格图片连续滑动效果
  8. Android(安卓)Geofence的学习(三)总结、Dem
  9. 移动Android开发-规范文档
  10. android 关于appcompat v7出错问题与解决