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
Try overriding BaseAdapter.isEnabled() in your adapter, and calling this method from your onItemClick().
BaseAdapter.isEnabled()
onItemClick()