Ok here are some thing that you should be clear about:
- The background color you are setting in your xml file is of the activity and not of the ListItems you are trying to define.
- Every list item has its own layout file and which should be passed or inflated in case you are using complex layout for list item.
I try to explain this with a code sample :
*Lets start with ListItems layout *: save it in your res/layout folder of you android project with say list_black_text.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- Definig a container for you List Item-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="center_vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- Defining where should text be placed. You set you text color here-->
<TextView
android:id="@+id/list_content"
android:textColor="#000000"
android:gravity="center"
android:text="sample"
android:layout_margin="4dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
Well a simple layout with a TextView to be precise. You must have an id assigned to TextView, in order to use it.
Now coming to you screen/activity/chief layout, as I said you are defining background to you screen with android:background attribute. I see you have defined a text view there as well and I suspect you are trying to define content/list item there.Which is not at all needed.
heres your edited layout,
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="#FFFFFF">
<ListView android:id="@android:id/list" android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<!-- REMOVED TEXT VIEW, AND KEEPING BACKGROUND WHITE -->
</LinearLayout>
And lastly most important is to set your adapter.
setListAdapter(new ArrayAdapter<String>(
this,R.layout.list_black_text,R.id.list_content, listItems));
You must notice the layout resource which are passing to adapter R.layout.list_black_text and R.id.list_content is TextView ID we declared. I have also changed ArrayAdapter to String type since its generic.
I hope this explains everything. Mark my answer accepted if you agree.
Messy Way But a Good quick fix
You can also do this with a quick fix if you do not want to go ahead with complex layout defining etc.
While instantiating the adapter declare an inner class to do this, here is the code sample:
ArrayAdapter<String> adapter=new ArrayAdapter<String>(
this,android.R.layout.simple_list_item_1, listItems){
@Override
public View getView(int position, View convertView,
ViewGroup parent) {
View view =super.getView(position, convertView, parent);
TextView textView=(TextView) view.findViewById(android.R.id.text1);
/*YOUR CHOICE OF COLOR*/
textView.setTextColor(Color.BLUE);
return view;
}
};
/*SET THE ADAPTER TO LISTVIEW*/
setListAdapter(adapter);