如何在android中查看日期?

发布于 2024-12-04 02:06:49 字数 334 浏览 0 评论 0原文

可能的重复:
什么是在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

情痴 2024-12-11 02:06:49

您应该使用 java.util.Calendar 类。

引用文档:

Calendar rightNow = Calendar.getInstance();
if (rightNow.get(Calendar.DAY_OF_WEEK) == Calendar.FRIDAY){
   //do some stuff here
}

You should use the java.util.Calendar class.

Quoting the documentation :

Calendar rightNow = Calendar.getInstance();
if (rightNow.get(Calendar.DAY_OF_WEEK) == Calendar.FRIDAY){
   //do some stuff here
}
撞了怀 2024-12-11 02:06:49

看到这个:
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()....

青衫负雪 2024-12-11 02:06:49

简单来说就是这样:

    private boolean isTodayFriday(){
    Calendar calendar = Calendar.getInstance();
    return calendar.get(Calendar.DAY_OF_WEEK) == Calendar.FRIDAY;
}

Simply this:

    private boolean isTodayFriday(){
    Calendar calendar = Calendar.getInstance();
    return calendar.get(Calendar.DAY_OF_WEEK) == Calendar.FRIDAY;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文