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.
|
feedback
|
|
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. | |||||||||||
feedback
|
|
Please provide some code, without it the answer to your question could not be complete. | |||
|
feedback
|