1.finish();


2.android.os.Process.killProcess(android.os.Process.myPid());

3.Android彻底关闭当前应用

以下方法用于关闭当前应用:

ActivityManager manager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
manager.restartPackage(getPackageName());

需要权限:
"Android.permission.RESTART_PACKAGES"
函数说明:
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.

与当前应用相关的应用、进程、服务等也会被关闭。
会发送 ACTION_PACKAGE_RESTARTED广播。
不要被函数名误导。

ps:要通过一个进程去结束另一个进程。在之前的SDK版本中,一直使用方法restartPackage(packageName)方法,但是在Android的开发文档中介绍说,这个函数会导致一些问题( the previous behavior here is no longer available to applications because it allows them to break other applications by removing their alarms, stopping their services, etc.),所以建议大家使用一个新的方法: 
  void killBackgroundProcesses(String packageName)
  由于这个方法没有返回值,所以我们也不知道我们的目标进程是否真的退出了。但是,我目前只发现了这个可以结束另一个进程的方法。

更多相关文章

  1. android 中 LocalSocket的基本使用方法
  2. 修改 android 手机 hosts 文件的方法
  3. Android方法过多MutiDex使用说明
  4. android 取消标题 程序意外停解决方法
  5. android 动态布局
  6. 【移动安全】Android(安卓)App Smail代码动态跟踪调试方法
  7. Android(安卓)Kill App
  8. 浅谈Java中Collections.sort对List排序的两种方法
  9. Python list sort方法的具体使用

随机推荐

  1. 高质量技术文章
  2. android三种动画详解
  3. android基本架构
  4. Android开发之——底层驱动开发(-)
  5. ui布局参数设置
  6. android:scaleType 属性
  7. Android(安卓)Fingerprint完全解析(三) :F
  8. Android基础知识之Manifest文件的组织结
  9. android imageView 图片显示方式属性
  10. android的异步加载与UI