gpt4 book ai didi

android - 如何使用卸载 Activity 完成我的 Android 应用程序的实际卸载/删除?

转载 作者:行者123 更新时间:2023-11-29 00:38:41 25 4
gpt4 key购买 nike

我添加了一个带有 Intent 过滤器的 Activity 来拦截我的应用程序的卸载,这样我就可以在用户卸载我的应用程序时添加一些额外的处理/清理。我的 Activity 被调用得很好,但我似乎无法完成从设备中删除包。

<activity
android:name=".Uninstall"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.DELETE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="package" />
</intent-filter>
</activity>

当我使用包管理器尝试完成卸载时,它只会弹出相同的选择器对话框。

Intent intent = new Intent(Intent.ACTION_DELETE, Uri.fromParts("package", Uninstall.this.getPackageName(), null));
startActivity(intent);

如果我为我的应用程序提供替代卸载 Activity ,我该如何从设备上完成 apk 的实际卸载?

谢谢。

最佳答案

您应该查看引用文档以了解您的 Intent 。 ACTION_DELETE 的 Intent 与从容器中删除项目有关,而不是应用程序/包。处理应用程序/包删除的 Intent 是 ACTION_PACKAGE_REMOVED 但正如文档所述:

An existing application package has been removed from the device. The data contains the name of the package. The package that is being (un)installed does not receive this Intent.

所以对您的问题的简短回答是无法完成。如果您照章办事,则无需在卸载时执行其他任务。

关于android - 如何使用卸载 Activity 完成我的 Android 应用程序的实际卸载/删除?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11001976/

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