访问动态壁纸中的时间
我开发了一个动态壁纸。现在我希望它与网络连接以获得准确的时间,因此动态壁纸会根据它而变化。但是,作为一个业余爱好者,我无法做到这一点。请帮忙。
I've developed a live wallpaper. Now I want it to connect with the net to get the exact time, so the live wallpaper changes according to it. But, being an amateur, I'm not able to do it. Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
建议使用本地系统调用;无需访问互联网。
例如,看一下 PolarClock,可以看到一些使用时间相关类的代码:
https: //android.googlesource.com/platform/packages/wallpapers/Basic/+/master/src/com/android/wallpaper/polarclock/PolarClockWallpaper.java
编辑: 有两个好的您不想使用互联网获取时间的原因:
Suggest using local system calls; no need to access Internet.
Take a look at PolarClock, for example, to see some code using time-related classes:
https://android.googlesource.com/platform/packages/wallpapers/Basic/+/master/src/com/android/wallpaper/polarclock/PolarClockWallpaper.java
Edit: There are two good reasons why you do not want to use the Internet to get the time: