Skip to content Skip to sidebar Skip to footer

Android Listselector Not Visible In Custom Listview

I have made a custom list having image and textview. On setting the styles, the selector is not visible. The style is invoked using setTheme(R.style.rose); in create method of Lis

Solution 1:

Android first draws the ListView background as well as the dividers. Then, the system draws the list selector. Finally, ListView renders all itemviews on top of that. So the list selector will never be visible with opaque background set to itemviews

http://android.cyrilmottier.com/?p=454

enter image description here

Post a Comment for "Android Listselector Not Visible In Custom Listview"