I have a ListView where each item is a TextView.
ListView
TextView
I want to enable the long press behaviour similar to an EditText that display
EditText
To allow users to copy some or all of the TextView's value and paste it somewhere else,
set the XML attribute {@link android.R.styleable#TextView_textIsSelectable android:textIsSelectable} to "true"
{@link android.R.styleable#TextView_textIsSelectable android:textIsSelectable}
"true"
or
call {@link #setTextIsSelectable setTextIsSelectable(true)}.
{@link #setTextIsSelectable setTextIsSelectable(true)}