没有日期选择器对话框的android日期选择器
我目前正在尝试在文本视图上显示使用“日期选择器”选择的日期(以文本格式),我想在日期选择器中的日期更改时更新文本视图,并且我想在长格式(例如,2011 年 1 月 1 日)
我尝试查找示例,但这些示例使用日期选择器对话框。有人可以帮我吗?
I am currently trying to display a date(in the text format) selected using a "datepicker" on a textview, I want to update the textview as and when the date in the date picker is changed and I want to display the date in the long format ( eg. January 1 2011)
I tried looking up examples but the examples use the date picker dialog. Can anyone help me out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 getDayofMonth()、getMonth() 和 getYear(),可以获取用户设置的日、月、年,然后可以使用 switch 语句将整数月份转换为相应的月份。这就是你所要求的吗?
Use getDayofMonth(), getMonth(), and getYear(), you can get the day, month and year set by user, then you can user switch statement to convert integer month to corresponding month. Is that what you are asking for?
为此使用 onTimeChangedListener 和 onDateChangedListener ..有效!
Used onTimeChangedListener and onDateChangedListener for this..works!
嘿,我认为你应该看看这个 日期选择器
它很有帮助
hey i think you should look at this date picker
it is helpful