I need to map certain type identifiers to my Spinner
's adapter.
I have defined the type identifiers as constants:
public static int TYPE_SOMETYPE = 0;
// etc..
Now, how could I find out what type was selected in the spinner? What sort of SpinnerAdapter
is the right tool for the job?