如何在android中查看日期?
我想制作一个带有以下问题的应用程序:“今天是星期五吗?” 如果是星期五,您会看到“否”或“是”。 所以我的问题是: 如何查看今天是否是星期五? 我希望你能理解我,否则就问我吧。
高威
Possible Duplicate:
What is the easiest way to get the current day of the week in Android?
I want to make an app with the question: "Is it al Friday?"
And than you would see "No" or "Yes" if it's Friday.
So my question is:
How can i check if today it's friday?
I hope you understand me, otherwise just ask me.
Gaauwe
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该使用 java.util.Calendar 类。
引用文档:
You should use the java.util.Calendar class.
Quoting the documentation :
看到这个:
http://developer.android.com/reference/java/util/Date.html
你可能想创建一个日历实例&将其设置为当前日期并获取星期几(Calendar.DAY_OF_WEEK) &与星期五比较(如果我没记错的话,星期五= 6?请检查一下)
或使用 new date()...
see this:
http://developer.android.com/reference/java/util/Date.html
u probably want to create a calendar instance & set it to the current date and get the day of the week(Calendar.DAY_OF_WEEK) & compare with friday(friday = 6 if i remember correctly?,check on this pls)
or use new date()....
简单来说就是这样:
Simply this: