What method does a spinner have with a particular item selected, eg: I have the items: 1 2 3 and 4
and I want it to start with the '3' selected
What method does a spinner have with a particular item selected, eg: I have the items: 1 2 3 and 4
and I want it to start with the '3' selected
Once you have programmatically created or got your Spinner through a layout, simply use the setSelection
by passing the desired position as a parameter:
spinner.setSelection(2);