有没有办法从我的应用强制退出Google App(AKA Google Search
)?
如果是的话,怎么做?
答案 0 :(得分:1)
通常,您需要ActivityManager的killBackgroundProcesses():
public static void killOtherPackage(Context ctx) {
if (ctx != null) {
ActivityManager am = (ActivityManager) ctx.getSystemService(ctx.ACTIVITY_SERVICE);
if (am != null)
am.killBackgroundProcesses("com.comp.prodline.specificpack");
}
}
清单中的android.permission.KILL_BACKGROUND_PROCESSES。
但我怀疑你会成功杀死谷歌的应用程序。
有关详情,请参阅this thread。
答案 1 :(得分:0)
试试这个
android.os.Process.killProcess(android.os.Process.myPid());