可能重复:
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)。
答案 0 :(得分:1)
希望这能完美地帮助你,
Install and Uninstall Android applications with PackageInstaller
在没有回复之后先尝试使用Google搜索。然后,在这里问问题。
答案 1 :(得分:0)
SO上有一篇文章可以帮助你。
install / uninstall APKs programmatically (PackageManager vs Intents)
最后一个答案给出了一个如何去做的教程。