如何在手机开机时自动运行应用程序
任何人都可以给我在 Android 设备上自动运行 Android 应用程序的代码、链接或概念吗?每当设备打开时,应用程序应该自行启动,而不会受到用户的干扰。
谢谢..
Can anyone please give me code or links or concept for running an android application on android device automatically.. whenever the device is switched on, application should start on its own, with out the interference of the user.
Thank you..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要声明一个侦听 RECEIVE_BOOT_COMPLETED 的广播侦听器
在您的侦听器中:
使用上述想法的另一个示例: 自动启动应用
You need to declare a broadcast listener that listens for RECEIVE_BOOT_COMPLETED
In your listener:
another example using the above ideas: auto start app