I want to make an aplication with a white background using a listView for show items.
But, the default font color of android is white so my items are white too, how can I change the font color of my listview?.
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.
Actually, you cannot change font color of ListView, because ListView does not have text in it. Instead, you can change the items in ListView which is normally provided using an BaseAdapter.
For more about ListView, check out the Hello ListView tutorial. Also, you can check out this ListView example which contains a customized BaseAdapter in ApiDemos. This might solve your problem.