问题标签 [datepickerdialog]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - DatePickerDialog - 如何显示日、月和年
无论我做什么,我的 DatePickerDialog 总是显示月份、日期和年份。
或者我需要显示日期、月份和年份。
我怎样才能做到这一点 ?
这是我的小代码:
android - 带有 CustomAdapter 的 ListView 中的 DatePickerDialog
我正在尝试在 listView 中实现一个日期选择器对话框。我可以显示日期选择器,但执行仍在继续。由于未选择日期,因此不会启动新的 Activity。有没有办法让我等到在对话框中选择日期?
代码:
我知道布尔完成的工作是在没有选择日期的情况下不执行活动。我这样做不是为了让应用程序崩溃
android - 在 Android 中设置 DatePickerDialog 的限制?
如何限制 DatePickerDialog 选择过去 2-12 年或当前日期 0-2 年的日期?
我在活动中有 DatePickerDialog,用于获取儿童和婴儿的出生日期。儿童年龄为(2-12 岁),婴儿年龄为(0-2 岁)。如果我通过 1,那么年龄限制应该是(2-12 岁),如果我通过 2,年龄限制应该是(0-2 岁)。
我可以做些什么来在我的日历中获得这个功能?
我的日历代码是:
android - android DatePickerDialog 只显示一个按钮
DatePickerDialog
我知道在这篇文章 Jelly Bean DatePickerDialog 中解释了很多问题——有没有办法取消?但我的问题是我只想显示确认按钮而不是两个按钮。我像这样使用DatePickerDialog
in DialogFragment
:
android - 日期选择器和日期选择器对话框之间的区别?
简单明了,我只想知道它们之间是否有区别。
android - Android DatePickerDialog default date is Jan/1/1900
I can't figure out this stupid little bug. Whenever I initiate the DatePickerDialog, the default set date date is Jan/01/1900.
It's weird though because on the tablet there's a calendar view next to the slider which you can pick from as well and THATS set on the current date, but the slider isn't.
android - 在 DatePicker 中调用两次的方法
我使用 The datepickerdialog
in simple Activity
..当DialogBox
关闭时,下面的方法将被调用 2 次。
我不知道为什么当 DatepickerDialog 只显示 1 次时这个方法调用 2 次?
android - 从 EditText 设置 datepickerdialog 的日期
即使经过 1 小时的搜索,我也无法在网上找到这个,我感到非常惊讶!
我有一个从原始 Pickers 示例稍微修改的日期选择器对话框(感谢 Raghunandan )。
但我不想将默认日期设置为当前日期,而是应该从 EditText 中选择日期并将该日期设置为 datepickerdialog。有人可以帮我解决这个问题吗?我当前的代码如下所示。
EDITED我需要知道如何从 DatePickerFragment 类中访问 EditText datepurchased 的值。
主要课程:
DatePickerFragment 类:
注意:我之前对相同的代码有一个问题,但我不知道如何在旧线程中添加问题。
android - Android MonoDroid Xamarin TimePickerDialog access to mMinuteSpinner NumberPicker
I'm trying to set the TimePickerDialog to intervals of 10 mins, I have seen various solutions that look like they should work however the most elegant solution seems to be to derive from TimePickerDialog and then override the NumberPicker properties to 00, 10, 20 ... 40 rather than 00, 01, 02 ... 59.
The solution in Java seems to be in the constructor of you derived class grab the NumberPicker control and reset all it's values to show what you want. The solution can be found here by 01.sunlit Set TimePickerDialog to use 15 minute intervals
I have attempted to implement this solution in Xamarin but I can't get access to the number picker object.
Can you tell me how to access this object within the constructor of my derived class?
android - DatePickerDialog 总是打开当前日期
我遇到了问题DatePickerDialog
,每次打开它都会显示当前日期而不是我之前设置的日期。
这是我的代码:
我在这里错过了什么?