1

通过引用DateWidgets1.javaAPI 演示,我倾向于通过以下方式显示日期选择器小部件。

private void initDateTextView() {
    dateTextView.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View arg0) {
            showDialog(DATE_DIALOG_ID);                
        }            
    });
}

@Override
protected Dialog onCreateDialog(int id) {
    switch (id) {
    case DATE_DIALOG_ID:
       // set date picker as current date
       return new DatePickerDialog(this, datePickerListener, 
                     this.year, this.month, this.date);
    }
    return null;
}

@Override
protected void onPrepareDialog(int id, Dialog dialog) {
    switch (id) {
    case DATE_DIALOG_ID:
        ((DatePickerDialog)dialog).updateDate(this.year, this.month, this.date);
    }        
}

private static final int DATE_DIALOG_ID = 0;
private final DatePickerDialog.OnDateSetListener datePickerListener = new DatePickerDialog.OnDateSetListener() {
    // When dialog box is closed, below method will be called.
    public void onDateSet(DatePicker view, int selectedYear, int selectedMonth, int selectedDay) {
        Log.i("CHEOK", selectedYear + ", " + selectedMonth + ", " + selectedDay);
    }
};

但是,我意识到,无论我按下对话框的完成按钮还是按下手机的软后退按钮,都将始终调用 onDateSet,并选择最新的微调器日期。

当用户按下完成按钮而不是返回按钮时,我只对获取所选日期感兴趣。

有什么办法可以做到吗?

4

1 回答 1

3

这似乎是本文中讨论的框架中的一个错误(包括建议的解决方法)。

于 2012-09-09T08:41:03.003 回答