Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以从我自己的应用程序中卸载其他应用程序。Android 操作系统允许我们这样做吗?
我在 stackoverflow 上遇到了类似的问题。
但在上述问题中,应用 A 是系统管理员。就我而言,我的应用程序是一个普通的应用程序。系统管理员应用程序和普通应用程序有什么区别?
您可以在任何正常应用程序中使用其他问题中提到的相同代码。再次复制代码:
Uri packageUri = Uri.parse("package:com.mypackgage"); Intent uninstallIntent = new Intent(Intent.ACTION_DELETE,packageUri); startActivity(uninstallIntent);
请在您的应用程序中尝试此代码。