Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm basically trying to disable the scroll on List View. Which can be done by

@Override
    public boolean dispatchTouchEvent(MotionEvent ev){
       if(ev.getAction()==MotionEvent.ACTION_MOVE){
            ev.setAction(MotionEvent.ACTION_CANCEL);
       }

       super.dispatchTouchEvent(ev);
       return true;
    }

But I do not want to create a custom List View (widget) class for this.

Is there any way I could do it like myListView.dispatchTouchEvent(ev)???

Thanks in advance.

share|improve this question

1 Answer

up vote 0 down vote accepted

Give this a try:

@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
   return true;
}
share|improve this answer
Well it seems there is no way to achieve this without extending to a custom list view class. So accepting this answer. – Wesley Aug 23 '12 at 14:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.