I added both ontouchlistner and onlongclicklistner to a textview. But now everytime onlongclicklistner is invoking. Touch listner is not invoking. I want to invoke ontouchlistner on touch and longclick listner on longclick of about 70sec.

link|improve this question

43% accept rate
feedback

2 Answers

Whenever you have more than one listener attached to a view that might respond to the same user input, you need to make sure you return true from your listener's event when you have handled the event and want to prevent further dispatching, and return false otherwise.

link|improve this answer
i had given that. But long click is invoking first. i want to invoke touch listner first. can we give priority to this events – Priyanka V Oct 13 '11 at 13:53
if you remove the long click listener, do you get the touch events? Sounds kinda fishy...onTouch should be firing first regardless. If anything is getting short circuited it should be the long click listener – Rich Oct 13 '11 at 14:04
sorry. long click is not iinvoking. – Priyanka V Oct 13 '11 at 14:09
You should update the question because the way it's currently phrased is misleading (sounds like onLongClick IS firing and onTouch is not). return false from onTouch. have you tried that? – Rich Oct 13 '11 at 14:20
So what should i do to invoke long click. Its invoking only after going to the touch – Priyanka V Oct 13 '11 at 14:21
show 2 more comments
feedback

Please provide some code, without it the answer to your question could not be complete.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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