I want to copy these text and past into other apps like WhatsApp twitter etc to the clipboard by clicking this (copy tag button) how can I do here is my activity
Asked
Active
Viewed 704 times
-1
-
1https://developer.android.com/guide/topics/text/copy-paste.html – CommonsWare Feb 17 '18 at 14:22
-
https://stackoverflow.com/questions/19253786/how-to-copy-text-to-clip-board-in-android – ADM Feb 17 '18 at 15:04
1 Answers
0
You can copy something to clipboard using something like this:
ClipboardManager clipboard = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE); ClipData clip = ClipData.newPlainText("some label", floatingTextButton.getText().toString()); clipboard.setPrimaryClip(clip);

Clapa Lucian
- 590
- 2
- 7
- 14
-
While this code snippet may solve the question, [including an explanation](http://meta.stackexchange.com/questions/114762/explaining-entirely-code-based-answers) really helps to improve the quality of your post. Remember that you are answering the question for readers in the future, and those people might not know the reasons for your code suggestion. – Rosário Pereira Fernandes Feb 17 '18 at 16:09
-