How do I enable copy and paste on Android?
To enable the standard copy/paste for TextView, U can choose one of the following:
- Change in layout file: add below property to your TextView. android:textIsSelectable="true"
- In your Java class write this line to set it programmatically. myTextView. setTextIsSelectable(true);
Mar 5, 2014