Can't choose first item in spinner
Closed this issue · 2 comments
jamessynge commented
When we fetch the items for a spinner, the first item appears to be selected, but it neither triggers the fetching of the next spinners items, nor does it allow the user to select that item (no change is detected). Perhaps we need a dummy first item?
justjohn commented
I'm certain I fixed this. Make sure you have the latest and try it again.
The problem stemmed from the fact that the code was checking for id values > 0, not >= 0.
I rewrote a bunch of the spinner code to use a no-default selected variant of the Spinner (see src/com/example/helloandroid/NoDefaultSpinner.java) so it shouldn't start with an item selected anymore.
jamessynge commented
Doh! I thought I'd updated, but clearly not recently enough.