I\'m using spinner controls in an Android application, and I handle user selections via an onItemSelectedListener() method. This seems to work okay when a diffe
The default Spinner doesn't trigger any event when you select the same item as your currently selected item. You will need to make a custom Spinner in order to do this. See How can I get an event in Android Spinner when the current selected item is selected again?