Here's how to write information to the clipboard:
ClipboardManager clipboard = (ClipboardManager)getSystemService(CLIPBOARD_SERVICE); clipboard.setText("Text"); The problem is that this feature is only possible if the API level> = 11
What is the alternative way for an API level below?