I’m wondering if there is a view like the checkbox, but without the checkbox part? I just want a nice clean list of items with just the text portion showing, still allowing click events.
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.
Create a
ListViewin your main.xml file:Then create an
ArrayAdapter<String>. Do the following for initializing an arrayadapter and listview:That’s all you have to do to create a listview with a list of textviews. If you want to create a onclick() listener, then add the following code: