How to disable the particular list item in list-view in android?
I mean if once i selected any one of item from a list-view,that item suppose to be disabled which means that ite
When you click the item have it set off a boolean.. And what method would use that item have it check to see if the boolean has been triggered, set to false for example. Then in your on click portion use BaseAdapter.isEnabled() = false;
Or with just that boolean alone they can never click it again.