Skip to content Skip to sidebar Skip to footer

Onlistitemclick() Not Working For Listview In Android

The following will not register the Toast upon clicking. In fact, it doesn't even seem to detect a click. The parent class that CustomListTitle extends is ListActivity, so everythi

Solution 1:

Try getting rid of android:descendantFocusability="blocksDescendants" (both occurrences) and android:focusable="false", neither of which are desirable for the structure you have set up. Also, I do not know why you are calling list.setClickable(true);, as that is not needed.


Post a Comment for "Onlistitemclick() Not Working For Listview In Android"