I have a simple ListView
and I want each of it items to be highlighted on user\'s touch. I thought this should happen by default but it isn\'t. Can you advice?
I believe this has to do with the "Enabled" attribute of the items in the ListAdapter.
If your Adapter contains the code:
@Override
public boolean areAllItemsEnabled() {
return true;
}
Then each item should be clickable (and therefore should highlight on being touched).
Could you post details (and possibly code) of what kind of Adapter you're using for this list?