sajjoo
sajjoo

Reputation: 6614

changing background color of a list view

can anyone help me with changing the background color of a list view?. I am new to android and I really need to know this. Any help will be appreciated.

Thanks!

Upvotes: 0

Views: 1016

Answers (2)

DonSteep
DonSteep

Reputation: 1075

You can use the setBackgroundColor() method of the ListView.

Upvotes: 3

ruslanoid
ruslanoid

Reputation: 153

would this help for example:

<ListView android:id="@+id/rssListView"
    android:background="#7700CC00"
    android:layout_height="wrap_content"
    android:layout_width="match_parent" />

?

Upvotes: 0

Related Questions