up vote 15 down vote favorite
6
share [g+] share [fb]

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?

link|improve this question

feedback

3 Answers

up vote 50 down vote accepted

http://developer.android.com/reference/android/content/ClipboardManager.html

Use ClipBoardManager's setText method:

 ClipboardManager clipboard = 
      (ClipboardManager) getSystemService(CLIPBOARD_SERVICE); 

 clipboard.setText("Text to copy");
link|improve this answer
This method is deprecated already. – siik Sep 10 '11 at 8:48
That version has been deprecated, but the version that replaces it has the exact same name and includes all the old functions (or at least the setText function,) though appears to allow for other objects rather than just text to be copied. See developer.android.com/reference/android/content/…. This means the above code is still valid. – joshhendo Oct 31 '11 at 9:24
feedback
public void onClick (View v) 
{
    switch (v.getId())
    {
        case R.id.ButtonCopy:
            copyToClipBoard();
            break;
        case R.id.ButtonPaste:
            pasteFromClipBoard();
            break;
        default:
            Log.d(TAG, "OnClick: Unknown View Received!");
            break;
    }
}

// Copy EditCopy text to the ClipBoard
private void copyToClipBoard() 
{
    ClipboardManager ClipMan = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);
    ClipMan.setText(editCopy.getText());
}

you can try this..

link|improve this answer
1  
setText is deprecated. Use setPrimaryClip(ClipData) instead. – AnDro Jan 10 at 5:29
feedback

Your Answer

 
or
required, but never shown

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