D diego Member Licensed User Longtime User Jan 9, 2011 #1 I need to do some actions if the user changes the value of a Spinner, but before ItemClick event, because I lose the previous value in the spinner. or is any way to do this?
I need to do some actions if the user changes the value of a Spinner, but before ItemClick event, because I lose the previous value in the spinner. or is any way to do this?
klaus Expert Licensed User Longtime User Jan 9, 2011 #2 You should memorize the current value of the Spinner in a global variable. Then in the ItemClick event you can run the code you want before taking into account the new value. Best regards.
You should memorize the current value of the Spinner in a global variable. Then in the ItemClick event you can run the code you want before taking into account the new value. Best regards.
D diego Member Licensed User Longtime User Jan 9, 2011 #3 thanks Klaus, sometimes I am blinded... :signOops: