I've got basic android spinner and I would like to have, after clicking it, the list with items with one of them highlighted, the one, that was originally selected.
Like it's done here: http://www.warriorpoint.com/blog/wp-content/uploads/2009/05/05spinner-thumb.png
But with my own layout of the items and not with the radio box, but with my own background instead.
How can I achieve this? Is there anything of use in the selector, or do I have to do it programatically?
Any help is appreciated.
setSelection(pos)
would need to be added in theonItemSelected()
listener of the spinner. – Distilled