How to apply background color to listview dynamically in Android?
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.
I’m not sure what it is you want to do but one of
View.setBackgroundColor(),View.setBackgroundDrawable()orView.setBackgroundResourceshould cover it, depending on what you want to show.Remember, each item in a
ListViewis aViewin its own right, so depending on how you’re creating them, they may be obscuring the background you’re setting for yourListView.You may also need to disable the cache color hint to get your views to display how you want. Have a look at this post of the Android Developer’s Blog for more information.