Select And Copy Text In A TextView Android
I know there is another question just like this one but still haven't answer working for me. I have a TextView in my fragment with informations inside.It's a long textview with a s
Solution 1:
Try this:
android:textIsSelectable.
i.e., android:textIsSelectable="true"
Solution 2:
Ok so, I found the problem by myself, I wasn't able to select because i have a
setMovementMethod(new ScrollingMovementMethod());
I tried to delete this one and it's work. Thx for ur help
Post a Comment for "Select And Copy Text In A TextView Android"