In Android can the OnLongClickListener be used with EditTexts and TextViews or just Buttons?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 3 down vote accepted

OnLongClick handling is inherited from android.view.View. Therefore it should be functional with EditText and TextView too.

link|improve this answer
Meh got ninjad. – Octavian Damiean Nov 22 '10 at 14:03
feedback

It can be used on the base class View so also on every derived class. In other words. Yes you can. Reflink to the OnLongClickListener interface.

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.