To define links in TextView use

 setMovementMethod(LinkMovementMethod.getInstance()); 

but I noticed, on devices with Android 4.2 and 4.3, when using this function, text selection stops working.

Attribute at TextView costs android:textIsSelectable="true"

Who knows how to replace setMovementMethod(LinkMovementMethod.getInstance()); so that text selection works on 4.2 and 4.3 or how to implement your text selection implementation for copying ????

    0