I am implementing an endless ListView (like in the Twitter app). I want to make the last item not selecteble. So that if the penultimate item is selected and I scroll down with
if you're using custom array adapter just override this method.
@Override public boolean isEnabled(int position) { return false; }