如何在android中自动调用我的应用程序
我想在凌晨12点自动调用我的应用程序,这种过程,如何在android中实现,可能吗?
I want to automatically invoke my application at 12.00 am,This kind of process ,how to implement in android,is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 AlarmManager。
这是一个例子:
Look at AlarmManager.
Here is an example:
ReminderBootUp.java 文件包含在特定时间安排您的活动的代码
,您应该在 Manifest.xml 文件中添加此行,
此代码将在启动设备后工作...
如果您想像正常的启动活动一样启动应用程序,
像我们正常的代码一样写
ReminderBootUp.java file have the code to schedule your activity at particular time
you should add this line in Manifest.xml file
this code will work after booting the device...
if you want to start your application as normal statup activity,
write as our normal code