如何检测用户取消程序(“.apk”)安装时的情况?
如何检测用户取消应用程序(.apk 文件)安装时的情况?
我的应用程序以编程方式安装其他应用程序,但用户可以取消安装过程。在安装过程中,用户会看到如下对话框:“替换应用程序。您正在安装的应用程序将替换另一个应用程序”。然后出现一个对话框“您想安装此应用程序吗?”。如果用户按“安装”,则会生成 ACTION_PACKAGE_...
广播。但是如何检测用户是否按下了“取消”呢?
How to detect the situation when a user cancels an application (.apk file) installation?
My app programmatically installs other apps, but users can cancel installation process. During the installation a user sees a dialog like that: "Replace application. The application you are installing will replace another application". And then a dialog "Do you want to install this application?". If the user presses "Install" the ACTION_PACKAGE_...
broadcast is generated. But how to detect if the user presses "Cancel"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果用户选择“安装”,将生成
Intent.ACTION_PACKAGE...
操作。如果用户选择“不安装”,则 Activity 将退出,且不会执行
Intent.ACTION_PACKAGE...
操作。这意味着“用户已取消安装”。
If a user chooses "Install"
Intent.ACTION_PACKAGE...
actions will be generated.If a user chooses "Don't install" an activity quits without
Intent.ACTION_PACKAGE...
actions.That means "User has canceled an installation".
我认为您无法检测用户是否卸载或未安装应用程序,但您可以在启动应用程序时或执行操作后检查是否安装了所需的其他应用程序
I think that you can't detect if the user uninstall or not install an app but you can check that the other apps required are installed when you start your app or after to do an action