Android - 获取当前(今天)日期
只是一个问题,在 android 中获取当前/今天的日期。从日期选择器或简单的日期格式获取它是否更明智?
Just a question , to get the current / today date in android. Is it more advisable to get it from a date picker or from a simple date format.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以尝试 System.currentTimeMillis() 它返回当前时间(以毫秒为单位)。
You can try System.currentTimeMillis() which Returns the current time in milliseconds.
使用这个
HTH
use this
HTH
如果您希望用户从 DatePicker 中选择日期,那么它是希望实现 DatePicker。如果您想直接在 TextView 中显示日期,请使用 SimpleDateFormat。
If you want that user selects the date from DatePicker then it is desirable to implement DatePicker. And if you want to display date directly in TextView then use SimpleDateFormat.