解決方案沒有找到它,我花了幾個小時來應對這個挑戰。 如何獲得日期以查看當您按下「今天」按鈕時的情況?如何在android中設置DatePickerDialog中的日期?
想要獲得按下「今天」按鈕時顯示的日期。 而且,我們相信嘗試將信息添加到指定日期的屏幕顯示的過程。在外部類中定義
DatePickerDialog dpdialog = new DatePickerDialog(me, new OnDateSetListener() {
@Override
public void onDateSet(DatePicker view, int pickyear, int monthOfYear,
int dayOfMonth) {
}
}, year, month-1, day);
// Dialog(Positive Button)
dpdialog.setButton(
DialogInterface.BUTTON_POSITIVE,
"set",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// Positive Button
// How to get the date set
String day = dpdialog.getDayOfMonth();
String month = dpdialog.getMonth() + 1;
String year = dpdialog.getYear();
}
}
);
// Dialog (Negative Button)
dpdialog.setButton(
DialogInterface.BUTTON_NEGATIVE,
"cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// Negative Button
}
}
);
// Dialog(Neutral Button)
dpdialog.setButton(
DialogInterface.BUTTON_NEUTRAL,
"today",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// Neutral Button
}
}
);
dpdialog.show();
沒有人去打擾,如果你回答你的問題不要打擾你的代碼格式。 – 2012-03-13 02:47:12
對不起。 我應該有更多的問題和整理。 回來再次寫我自己的,我試圖提高可讀性。 – user1265435 2012-03-13 03:19:13