Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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); }
share|improve this question
I think using different dialog ids should fix your problem. – Boris Strandjev Jan 13 '12 at 8:59
Thanks, its helped – Gorets Jan 13 '12 at 9:14

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.