vote up 2 vote down star

I'm building an Android app and I want to copy the text value of an EditText widget. It's possible for the user to press Menu+A then Menu+C to copy the value, but how would I do this programatically?

flag

78% accept rate

2 Answers

vote up 5 vote down check

http://code.google.com/android/reference/android/text/ClipboardManager.html

Use ClipBoardManager's setText method:

 ClipboardManager clipboard = 
      (ClipboardManager) getSystemService(CLIPBOARD_SERVICE); 

 clipboard.setText("Text to copy");
link|flag
vote up 0 vote down

ClipboardManager

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.