I am working on ListView. My list-view get data from server on run time.i want to disable my list-view specific item when it getting data from server and should enable after getting this data.i don't want to use progressBar. currently i am using the following code to disable the list item.
@Override
public boolean isEnabled(int Id) {
return false;
}
but don't know how to enable is again because the above method always return false when i call it.please tell me how can i do that?
Thank in advance.