Is it possible to send past command so that it pastes text into currently focused edit text. Scenario:
For best and easy way to copy paste programmatically is...
Create a Button and copy this code in onclicklistener.
ClipboardManager clipboard = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
For Copy
clipboard.setText("which you want to copy");
For paste
textview1.setText(clipboard.getText().toString());