I've a little problem. In my activity there are 2 datepicker widgets. When I call 1st widget it inits and everything is good, but after 2nd call it catches old init data. How I can fix this problem? I think I should kill init object.
private DatePickerDialog.OnDateSetListener mDateSetListener = new DatePickerDialog.OnDateSetListener() {
public void onDateSet(DatePicker view, int year, int monthOfYear,
int dayOfMonth) {
mDay = dayOfMonth;
mMonth = monthOfYear;
mYear = year;
calendar.set(mYear, mMonth, mDay);
if (START_DATE) {
task.setDateStart(calendar.getTimeInMillis());
START_DATE = false;
}
if (END_DATE) {
task.setDateEnd(calendar.getTimeInMillis());
END_DATE = false;
}
updateData();
}
};
.....
private void initDate() {
if (START_DATE) {
calendar.setTimeInMillis(task.getDateStart());
} else {
calendar.setTimeInMillis(task.getDateEnd());
}
mDay = calendar.get(Calendar.DAY_OF_MONTH);
mMonth = calendar.get(Calendar.MONTH);
mYear = calendar.get(Calendar.YEAR);
}
.... Listeners
public void setStartDate(View v) {
START_DATE = true;
initDate();
showDialog(DATE_DIALOG_ID);
}
public void setEndDate(View v) {
END_DATE = true;
initDate();
showDialog(DATE_DIALOG_ID); }