
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

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
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);