the listView always appears with a radiobutton so is there any way to remove this radiobutton ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can customize each item’s layout using a proper Adapter. What you are seeing is the layout given by android.R.layout.simple_spinner_item, which is the default, but you can override that with something like:
You can find more information in the Spinner Tutorial:
http://developer.android.com/resources/tutorials/views/hello-spinner.html