In my android app I want to give simple copy paste option. User can copy text from text view by long clicking on it and I am successfully complete it, But not getting how can paste it to a edit text. I am trying long press on a edit text but paste option is not available.
I know I can get content from ClipBoardManager by below code -
ClipboardManager clipMan = (ClipboardManager)getSystemService(v.getContext().CLIPBOARD_SERVICE);
myEdtTxt.setText(clipMan.getText());
but not getting how to get paste option.
Thanks in advance.