位置: 编程技术 - 正文
推荐整理分享Android学习 - 如何结束进程(android 入门教程),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:android入门视频教程,android教程视频教程,android教程视频,android 入门教程,android学习路线,android教程视频,android 入门教程,android教学,内容如对您有帮助,希望把文章链接给更多的朋友!
Android结束进程,关闭程序的方法。经过这几天的调研,发现了Android结束一个进程的方法。即采用下面这个类:
Since: API Level 3
Have the system perform a force stop ofeverything associated with the given application package. All processes thatshare its uid will be killed, all services it has running stopped, allactivities removed, etc. In addition, a ACTION_PACKAGE_RESTARTED broadcast willbe sent, so that any of its registered alarms can be stopped, notificationsremoved, etc.
You must hold the permissionRESTART_PACKAGES to be able to call this method.
Parameters
packageName:The name of the package to be stopped.
使用这个类的具体源代码:
再加上uses-permission
结束进程还有android.os.Process.killProcess(pid)只能终止本程序的进程,无法终止其它的。
Kill the process with the given PID.Note that, though this API allows us to request to kill any process based onits PID, the kernel will still impose standard restrictions on which PIDs youare actually able to kill. Typically this means only the process running thecaller'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.
Call this when your activity is done andshould be closed. The ActivityResult is propagated back to whoever launched youvia onActivityResult().
这是结束当前activity的方法。
在android2.2版本之后则不能再使用restartPackage()方法,而应该使用:
加入权限
另外,在android2.2以后,如果服务在ondestroy里加上了start自己,用killbackgroudprocess通常无法结束自己。
还有一种最新发现的方法,利用反射调用forceStopPackage来结束进程
需要在manifest里加上shareduid定义
另外加上权限
并且采用系统platform签名
因为需要用FORCE_STOP_PACKAGES权限,该权限只赋予系统签名级程序。即可实现强制停止指定程序。
还有一种方法,利用linux的kill -9命令。
Android的PopupWindow使用android学习之旅(四十三) PopupWindow简介PopupWindow是一个类似dialog的控件,可以接受任何的view作为下拉列表显示。用法代码展示packagepeng.liu.test;importandroid.app.Activity;importandroid.app.Ale
android editText inputType 各个字段的含义 EditTextandroid:layout_width=fill_parentandroid:layout_height=wrap_contentandroid:inputType=phone///文本类型,多为大写、小写和数字符号。android:inputType=none//输入普通字符andr
Android中ViewPager的使用 我们在一个apk中第一次开始的时候,会有一个guide界面,一般使用ViewPager来完成。布局文件如下:?xmlversion="1.0"encoding="utf-8"?RelativeLayoutxmlns:android="
标签: android 入门教程
本文链接地址:https://www.jiuchutong.com/biancheng/385964.html 转载请保留说明!友情链接: 武汉网站建设