2020
09-24
09-24
Android根据包名停止其他应用程序的方法
1.使用killBackgroundProcesses()方法首先再AndroidManifest.xml文件中添加权限<uses-permissionandroid:name="android.permission.KILL_BACKGROUND_PROCESSES"/>然后直接调用stopApp(mContext,packageName)方法publicvoidstopAppByKill(Contextcontext,StringpackageName){ActivityManagermActivityManager=(ActivityManager)context.getSystemService(Context.ACTIVITY_SERVICE);mActivityManager.killBackgroun...
继续阅读 >