android:控制安装过程
我想创建一个简单的应用程序,显示一个带有 2 个按钮“是”和“否”的对话框,询问用户他们想要安装新应用程序吗?当用户在 Android 设备中安装新应用程序时。如果用户按“是”按钮,则应用程序有权安装,如果用户按“否”按钮,则新应用程序安装将被取消。 感谢大家
I want to Create one simple app witch is display a dialog box with 2 buttons YES and No witch ask to user that they want to install new application ? when user install a new application in android device.if user press YES button then application have permission to install and if user press NO button then new application installation is going cancel.
Thanks to all
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
总体思路如下。
您的应用程序应该有意图接收器,它将在此处用于广播意图
ACTION_PACKAGE_INSTALL
然后在接收方法中您可以实现您的逻辑。
这只是一个模糊的想法。可能对您进一步的研发有帮助。
The all over idea is as follows.
your app should have intent receiver which will here for broadcast intent
ACTION_PACKAGE_INSTALL
Then In on receive method you can implement your logic.
This is just the faint idea.Might be helpful to you for further r and d.