如何设置 Android 模拟时钟上的时间?
我正在创建一个 Android 应用程序,它获取不同国家/时区的当前时间。我这样做是因为市场上没有很多其他应用程序可以完成相同的工作。
我的应用程序上有一个模拟时钟,下面有一个数字时钟,如何更改时钟上的时间 - 增加或减少几个小时?例如,我可能希望时钟显示佛罗里达州的时间,所以对我来说是 -6 小时。
虽然我精通其他编程语言;主要是.NET 我是Java新手,所以请原谅简单的问题!
谢谢你!
I'm creating an android application that gets the current time in a different country/time-zone. I'm making it as there aren't many other apps on the marketplace that do the same job.
I've got an analogue clock with a digital clock underneath on my app, how do I change the time on the clocks - take on or off a number of hours? For example, I may want the clock to display the time in Florida, so for me that'd be -6 hours.
Although I'm proficient in other programming languages; mainly .NET I'm new to Java, so please excuse the simple questions!
Thankyou!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Android 中的模拟时钟小部件不允许设置时间< /a> 但您可以调整它,因为源代码可用。
The analog clock widget in android doesn't allow setting the time but you could adapt it as the source is available.
如果您指的是
android.widget.AnalogClock
和android.widget.DigitalClock
,它们仅显示当前设备时间。它们并不是为显示您所寻求的任意时间而设计的。If you are referring to
android.widget.AnalogClock
andandroid.widget.DigitalClock
, they only show the current device time. They are not designed for showing arbitrary times, as you seek.