Quantcast

Have a Question?

If you have any question you can ask below or enter what you are looking for!

How do I enable copy and paste on Android?

To enable the standard copy/paste for TextView, U can choose one of the following:

  1. Change in layout file: add below property to your TextView. android:textIsSelectable="true"
  2. In your Java class write this line to set it programmatically. myTextView. setTextIsSelectable(true);

Mar 5, 2014

techfaq.online