Android Spinner: Get the selected item change event.
- by Soni Ali
How can you set the event listerner for a Spinner when the selected item changes
basically what I am trying to do is something similar to this:
spinner1.onSelectionChange = handleSelectionChange;
void handleSelectionChange(Object sender){
//handle event
}