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 should use:
setBackgroundResource(R.color.myRow_red)
instead of setBackgroundColor(). In your example background color is assigned with the ID instead of the actual color described in the resources.