When I disable my Spinner it looks almost exactly like it did prior to being disabled, i.e.
Before
I found this to be the best solution to the same question that was previously answered by @JSPDeveloper01: https://stackoverflow.com/a/20401876/8041634
Since Android doesn't gray out the spinner when it has been set to disabled, he suggests creating a custom method that uses the .setAlpha
command on the spinner, which grays out the text within it. Brilliant.