I have a Spinner dropdown with 3 items (they represent dates that can be selected).
- Now
- Weekend
- Custom Date
'Custom Date' is special, when I select it I display a DatePickerDialog. The problem is that when 'Custom Date' is already selected I cannot display again the DatePickerDialog.
SetOnItemSelectedListener fires only when you change selection, I tried OnItemClickListener but I get the exception
setOnItemClickListener cannot be used with a spinner.
Any way to detect the click/select event even when you don't change selection?
Thanks