I have a listView that I re-display with the correct answer highlighted when the user selects an item. However, at that point I would like to disable selection of list view
The reason the scrolling is locked is because you are setting up at
ListView
I found a way to disable highlighting without locking the scroll. You need to set it up at ListAdapter as shown below:
ArrayAdapter myList = new ArrayAdapter(this, R.layout.list_item, strText) {
public boolean isEnabled(int position)
{
return false;
}
};