I have the following code in my activity. In my xml, the video view is inside the linear layout. However, when the view is clicked, the onTouchListener never fires. I tried changing the onTouchListener to vvLive but that didn't do anything. I also tried changing the onTouchListener to an onClickListener, but nothing. Anyone know why the listener isn't firing? Thanks.

        private VideoView vvLive;
        LinearLayout linearLayoutLiveVideo;

        linearLayoutLiveVideo.setOnTouchListener(new OnTouchListener(){
            public boolean onTouch(View v, MotionEvent event){
                Log.d(TAG, "onTouch entered");
                if(event.getAction() == MotionEvent.ACTION_UP) {
                    Log.d(TAG, "ACTION_UP");

                }
                return false;
            }
        });

EDIT: I realized the code above actually works. Something in eclipse was messing up LogCat. After I restarted eclipse, LogCat prints the first log "onTouch entered". However, "ACTION_UP" was not being printed. I changed the MotionEvent to MotionEvent.ACTION_DOWN and the LogCat prints now. Why does ACTION_DOWN work but ACTION_UP does not?

link|improve this question

Are these views the ones that are being displayed in your activity? – dmon Jun 8 '11 at 13:58
does "clicable" property of layout set to true? – woodshy Jun 8 '11 at 13:59
@woodshy adding clickable=true did not do anything – yellavon Jun 8 '11 at 14:58
@dmon yes, I am playing a video inside a VideoView vvLive which is inside of a LinearLayout linearLayoutLiveVideo. I want to do some action when the user touches the video that is playing. – yellavon Jun 8 '11 at 15:09
feedback

2 Answers

up vote 3 down vote accepted

ACTION_UP is never being sent to your listener because you return false and therefor don't "consume" the event. Return true and you'll get the start event (ACTION_DOWN) as well as all the subsequent ones (ACTION_MOVE and then ACTION_UP).

link|improve this answer
feedback

Modify your code like this and try,

 @Override
public boolean onTouchEvent(MotionEvent event) {

  Log.d(TAG, "onTouch entered");
            if(event.getAction() == MotionEvent.ACTION_UP) {
                Log.d(TAG, "ACTION_UP");

        return super.onTouchEvent(event);
    else
        return false;
}
link|improve this answer
What about the setOnTouchListener. Can I still use that? – yellavon Jun 8 '11 at 14:18
Yes you have to use that line. Replace the lines below it as I have given and try it. – Andro Selva Jun 8 '11 at 14:20
Error: The type new View.OnTouchListener(){} must implement the inherited abstract method View.OnTouchListener.onTouch(View, MotionEvent). It looks like I cant use onTouchListner with onTouchEvent? – yellavon Jun 8 '11 at 14:39
feedback

Your Answer

 
or
required, but never shown

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