Im trying to set my list view like the image im attached.Please anyone help me. Thanks in advance

Im trying to set my list view like the image im attached.Please anyone help me. Thanks in advance

Well I can only think of a workaround, where in your getView (in the adapter) you set the background according to the position of the row. In other words, the bigger the pos int the "darker" the background.
I would set a gradient as a background for the list, like this:
<gradient
android:startColor="@color/orange"
android:centerColor="@color/middlecolor"
android:endColor="@color/yellow"
android:angle="0" />
and then set a drawable with a line or similar as a background of each cell.
Create a drawable for your gradient:
drawable/mybackground.xml
<item>
<shape android:shape="rectangle" >
<gradient
android:angle="270"
android:endColor="@color/red"
android:startColor="@color/orange"
android:type="linear" />
</shape>
</item>
Remember to declare "red" and "orange" colors:
values/color.xml
<color name="orange">#0000FF</color>
<color name="red">#FFA500</color>
Finally, set your drawable as ListView background:
<ListView
android:id="@+id/lvItems"
android:layout_width="match_parent"
android:layout_height="wrap_parent"
android:background="@drawable/mybackground" />