在 HTC Wildfire 上的 Android 应用程序中显示当前时间
我创建了一个基本的应用程序,它使用以下代码显示当前计时
String currentime = dateFormat.getTimeInstance().format(new Date());
它在模拟器上完美运行,例如。 10:25:00 AM,而在 HTC 野火中,它显示为 10:25:00,缺少 AM/PM。有人可以帮我解决这个问题吗?
I have created a basic app, which shows current timings using the following code
String currentime = dateFormat.getTimeInstance().format(new Date());
It works perfect on the emulator eg. 10:25:00 AM, whereas in HTC wildfire it displays as 10:25:00 missing the AM/PM. could anybody help me on this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 SimpleDateFormat 对象来转换时间格式。
这是 SimpleDateFromat 的 javadoc 链接。
you can try using a SimpleDateFormat object to convert the time formats.
here is the javadoc link for SimpleDateFromat.