I have a ListView that I\'m populating from a custom ListAdapter. Inside the Adapter (in the getView(int, View, ViewGroup) method) I\'m setting the background color of the V
You cold always wrap the whole row inside another view and set the background color on that view. This view would be the first (and only) child of the row.