Android 应用程序活动中的广告每 3-5 秒更改一次
我正在开发一个 Android 应用程序,其中我使用网络服务在一项活动中实现了 10 个广告。现在,我想给出每 3 到 5 秒更改这些广告的时间表。请帮助提供示例代码/链接。提前致谢。
I am developing one android application in which i have implemented the 10 ads in one activity using web services. Now, i want to give the timeline for changing those ads for every 3 to 5 seconds. Please help with the sample code/links. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需使用倒计时器
安排倒计时直到将来的某个时间,并定期通知间隔时间。在文本字段中显示 30 秒倒计时的示例:
更多..
just working with Countdown timer
Schedule a countdown until a time in the future, with regular notifications on intervals along the way. Example of showing a 30 second countdown in a text field:
Further more..
TimerTask.schedule()
将解决您的问题。请谷歌了解更多信息。
TimerTask.schedule()
will solve your problem.Please google for more information.
您应该使用 AlarmManager 或计时器服务来执行此操作,它每 3-5 秒执行一次。
我还设置了使用警报管理器自动注销的功能,如果用户理想 5 分钟,则注销。
public static void autoLogOut(Context context) {
如果用户理想 5 分钟后执行。
You should use AlarmManager or Timer service for doing it it is execute in every 3-5 second.
I have also make a function of using alarm manager auto logout if user ideal for 5 min then it is logout.
public static void autoLogOut(Context context) {
it is execute after if user ideal for 5 min.