I’m new to android development.Basically my question is how do I change the padding within a spinner so that the text is more compact and can therefore fit more values on the screen.
I have thought about using a slider, however I because there is such a wide range the value could be (1-20000) I wanted to enforce some restriction so selected lower numbers is easier.
Any tips would be great.
You can write s custom Spinner Adapter and override getView to write your own view. I had written some sample code for another similar question which might help.