<p><!-- res/values/styles.xml --></p><pre class="brush:xml;toolbar:false"><stylename="ListView"parent="@android:style/Widget.ListView">
<itemname="android:background">@color/light_grey</item>
<itemname="android:cacheColorHint">@android:color/transparent</item>
<itemname="android:divider">@android:color/transparent</item>
<itemname="android:dividerHeight">0dp</item>
<itemname="android:listSelector">@drawable/list_item_selector</item>
</style></pre><p>The @color/light_grey definition:</p><pre class="brush:xml;toolbar:false"><!---res/values/colors.xml--->
<?xmlversion="1.0"encoding="utf-8"?>
<resources>
<colorname="light_grey">#cccccc</color>
</resources></pre><pre class="brush:xml;toolbar:false"><?xmlversion="1.0"encoding="utf-8"?>
<selectorxmlns:android="http://schemas.android.com/apk/res/android">
<itemandroid:drawable="@drawable/item_selected"android:state_pressed="true"/>
<itemandroid:drawable="@drawable/item_focused"android:state_focused="true"/>
<itemandroid:drawable="@drawable/item_normal"/>
</selector></pre>