I have a number of TextViews that each share a single OnLongClickListener
Within the onLongClick event, I want to identify which TextView triggered the event.
However, the event is defined as:
public boolean onLongClick(View view)
I tried casting view to TextView, but that didn't work.
How can I get at the widget that triggered the OnLongClick event?
viewtoTextViewnot work? Did you try checkingif (view instanceof TextView)first to make sure it wasn't triggered from the wrong view? – Till Helge Helwig Nov 22 '11 at 9:28