如何在特定时间更改 Android 画廊中的图像
我的目标是在特定时间更改我画廊中的图像, 假设 5 秒改变,再 5 秒改变。
使用处理程序来更改某种无限循环 img 但我认为这种方法会消耗大量电池。
最好的方法是什么?
My goal here is to change the image in my gallery at certain times ,
lets say 5 seconds change , another 5 seconds another change .
Some sort of infinite loop using a handler to change the
img but i think this approach would consume a lot of battery .
what is the best way to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不认为你的做法有什么问题。
活动课程总是消耗大量电池。
只需在 onPause() 中停止计时器即可。
I don't see nothing wrong in your approach.
Activity classes always consume a lot of the battery.
Just stop the timer in onPause().