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.
我在 Play 商店中有一个应用程序。现在,我将发布一个升级,其中必须安排一个新的警报。警报的一些背景:
但是,我将如何为已经安装我的应用程序并登录的用户启动此警报?警报最终将在下次重新启动时启动,但我想了解在升级后立即尝试启动警报时的正确方法是什么。
您可以使用广播接收器并捕获Intent.ACTION_PACKAGE_REPLACED操作以完成此操作。
Intent.ACTION_PACKAGE_REPLACED
示例代码可在http://alvinalexander.com/java/jwarehouse/android/core/java/com/android/internal/content/PackageMonitor.java.shtml找到