我正在尝试在我的android项目中使用按钮时的日期对话框选择器。我的对话框显示没有问题,但我不知道如何设置肯定响应按钮(即保存事件)
这是我的代码:
public void addInstallDate(View view){
Log.e("Showing Dialog", "Dialog Date");
DatePickerDialog dateDlg = new DatePickerDialog(this,
new DatePickerDialog.OnDateSetListener() {
public void onDateSet(DatePicker view, int year,
int monthOfYear, int dayOfMonth)
{
Time chosenDate = new Time();
chosenDate.set(dayOfMonth, monthOfYear, year);
long dtDob = chosenDate.toMillis(true);
CharSequence strDate = DateFormat.format("MMMM dd, yyyy", dtDob);
}}, 2011,0, 1);
dateDlg.setMessage("Install Date?");
dateDlg.show();
}
如何为出现的两个按钮设置onclick事件? - 一旦我获得了onclick,我如何获取它的日期?
汤姆
答案 0 :(得分:0)
.setPositiveButton("OK", new
DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});