How to get clipboard for android

hello i would like to get the code for coppying and pasting to android clipboard

i tried this
ClipboardManager manager = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
ClipData clipData = ClipData.newPlainText(“text”, textView.getText());
manager.setPrimaryClip(clipData);
but haing more error help please