Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

To select Text from multiple TextViews

Tags:

android

How to Select Text from multiple Text Views in android?

I have tried the below code which works fine for one text view at a time only. I want to copy text from many text views at one stretch.

  android:textIsSelectable="true"
like image 697
CoderDecoder Avatar asked Nov 10 '22 10:11

CoderDecoder


1 Answers

You cannot do that at the same time. You need to set all text in a single text view.

like image 74
gandharva Avatar answered Nov 15 '22 00:11

gandharva