Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using VideoView for playing videos.And i want to disable any touch events while video is being played. Only buttons of the phone should work.

I have already tried following different ways.here vv is my VideoView.

      vv.setClickable(false);

      vv.onTouchEvent(null);

      vv.setEnabled(false);


Any kind of help is appreciated!

share|improve this question

1 Answer

up vote 2 down vote accepted

try this...

vv.setOnTouchListener(new View.OnTouchListener() {
    @Override
    public boolean onTouch(View v, MotionEvent event) {
        // do nothing here......
        return true;
    }
});
share|improve this answer
It is not working.But i appreciate your suggestion. – manthan9311 Oct 6 '12 at 10:58
you can also try onClick() as well... as above – MAC Oct 6 '12 at 11:00
1  
It is working now with vv.setOnTouchListener(...... solution. previosly it was not working because of some other code. Thanks @MAC – manthan9311 Oct 6 '12 at 11:05
glad to help you and thanks for accepting answer. – MAC Oct 6 '12 at 11:10

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.