I have a linear layout that contain the following listview :
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:cacheColorHint="#00000000"
android:divider="#FF0000"
android:dividerHeight="4dp"
/>
and the layout is used by a ListActivity, the issue is that the following line in ListView xml doesn't take effect :
android:divider="#FF0000"
android:dividerHeight="4dp"
and the default divider is set. Do you why this happening and how to fix it?