In Android 1.6, upon tapping a spinner (drop-down menu), radio buttons appear next to the spinner options. How do I remove those radio buttons so that just the option text remains?
In Android 1.6, upon tapping a spinner (drop-down menu), radio buttons appear next to
Share
Just to remove the radio buttons, you don’t need your own adapter class.
Create a dropdown_item.xml in layout
then make the following call in the code.
The default spinner dropdown item is a CheckedTextView which has the radio button. Here you replace it with a TextView.