I am setting a spinner to the diabled state by using mySpinner.setEnabled(false);
The spinner is disabled and greyed out, but when you click it on it, it shows the it’s items in a menu as if it is not disabled!!!
Does any body what could be the problem? Is it a bug in android ?
Regards
while
setEnabled(false)should do the job, disabling all interaction with the spinner can be achieved by also calling bothsetClickable(false)andsetFocusable(false)