是否有可能在DatePicker中设置自定义日期? 我想在DatePicker中设置一个日期,然后允许用户编辑它。 谢谢!
答案 0 :(得分:2)
你可以在DatePicker.init设置它......
或者设置日期控件的日期,如android developer sample所示。见步骤4-6。
答案 1 :(得分:1)
你看过this教程吗?它说最初设置DatePicker,使用DatePicker.init:
Calendar cal=Calendar.getInstance(Locale.ENGLISH);
dp.init(cal.getTime().getYear()+1900, cal.getTime().getMonth(), cal.getTime().getDay(), this);
答案 2 :(得分:0)
final Calendar c = Calendar.getInstance(Locale.ENGLISH);
mYear = c.get(Calendar.YEAR);
mMonth = c.get(Calendar.MONTH);
mDay = c.get(Calendar.DAY_OF_MONTH);
showDialog(DATE_DIALOG_ID);