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

时间:2015-02-01 03:54:56

标签: android android-4.2-jelly-bean android-package-managers android-4.3-jelly-bean google-now

有没有办法从我的应用强制退出Google App(AKA Google Search)?

如果是的话,怎么做?

2 个答案:

答案 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());