I\'m trying to disable multiple click events on listview, say after pressing first click some media gets played from webservice, while it gets played, other items need to be
In your custom ArrayAdapter overide isEnabled method as following
@Override public boolean isEnabled(int position) { return false; }