I impleme

public class TextViewer extends Activity implements OnTouchListener

and

tv.setOnLongClickListener(itemLongClickHandler);
tv.setOnTouchListener(this);

But I only the second one works.

Can I have them both work?

link|improve this question

What is itemLongClickHandler? Can you show the source code of the itemLongClickHandler = section? – George Bailey Apr 6 '11 at 16:46
feedback

1 Answer

up vote 0 down vote accepted

Are you always returning true from onTouch()? You should return false if you want normal event processing to happen.

There may be a better approach than this - what types of event are you looking to handle in onTouch()?

Best wishes,

Phil Lello

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.