gpt4 book ai didi

android - 如何以编程方式强制退出(或暂时禁用)Google App

转载 作者:行者123 更新时间:2023-11-29 01:35:42 24 4
gpt4 key购买 nike

有没有办法强制退出Google App (又名 Google 搜索)来 self 的应用程序?

如果可以,该怎么做?

最佳答案

一般来说,你会需要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");
}

}

在 list 中加上 android.permission.KILL_BACKGROUND_PROCESSES。

但我怀疑你能否成功杀死 Google 的应用。

有关这方面的更多信息,请参阅 this thread .

关于android - 如何以编程方式强制退出(或暂时禁用)Google App,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28259278/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com