在android中将时间和日期设置为日期选择器和时间选择器
我在我的应用程序中使用日期选择器和时间选择器。我想设置页面加载时的日期和时间。这可能吗?为何如此?
I am using a date picker and time picker in my application. I want to set the date and time when the page loads. Is this possible? How so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
我解决了我的类似问题,如下
I solved a similar problem of mine as follows
使用 JodaTime
JodaTime 是一个非常流行且有用的 Java 日期和时间处理库。如果您没有使用它,我强烈建议您看一下。
这是一个简单的示例,说明我如何从
DatePicker
和TimePicker
设置DatePicker
和TimePicker
code>DateTime 对象,可以是当前日期或过去或将来的任何日期(本例中的属性称为inspected_at
):希望有帮助。
太平绅士
Using JodaTime
JodaTime is an extremely popular and useful library for handling dates and times in Java. If you're not using it, I highly recommend taking a look at it.
Here's a simple example of how I set a
DatePicker
andTimePicker
from aDateTime
object, which could be the current date or any date from the past or future (the attribute in this case is calledinspected_at
):Hope that helps.
JP
DatePicker 有一个
updateDate
方法。这是我在我的一个应用程序中使用的内容,不使用对话框:
其中
project_row
是我的光标,日期保存在project_startdate
列中,如22MAY2012
你需要这个:
There is a
updateDate
method for the DatePicker.Here is what I use in one of my app, not using a dialog:
where
project_row
is my cursor, and the date is saved in the columnproject_startdate
like22MAY2012
and you need this:
查看如何使用日期选择器对话框。并在onCreate()中使用更新函数;如果页面加载意味着活动开始......希望它有帮助。
Check this How to use date picker dialog. and use update function in onCreate(); if by page loads you mean activity starts.... hope it helps.
检查这个。
在
onCreate();
中使用showDialog(TIME_DIALOG_ID);
函数Check this.
Use
showDialog(TIME_DIALOG_ID);
function inonCreate();
在 kotlin 中使用此代码
Use this code in kotlin