在Android中卸载应用程序?

时间:2012-03-07 07:15:18

标签: android

  

可能重复:
  Is it possible to programmatically uninstall a package in Android

我们可以通过以下步骤删除包裹:

Uri uri = Uri.fromParts("package", strPackageName, null);

Intent it = new Intent(Intent.ACTION_DELETE, uri);

startActivity(it);

但是通过这种方式,将显示Applications Manager的UI,我的问题是如何以静默方式删除软件包(没有显示Applications Manager的UI)。

2 个答案:

答案 0 :(得分:1)

希望这能完美地帮助你,

Install and Uninstall Android applications with PackageInstaller

在没有回复之后先尝试使用Google搜索。然后,在这里问问题。

答案 1 :(得分:0)

SO上有一篇文章可以帮助你。

install / uninstall APKs programmatically (PackageManager vs Intents)

最后一个答案给出了一个如何去做的教程。