Can anybody please tell me how to copy the text present in a particular textview to clipboard when a button is pressed? Thanx :)
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.mainpage);
textView = (TextView) findViewById(R.id.textview);
copyText = (Button) findViewById(R.id.bCopy);
copyText.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
ClipboardManager clipboard = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
String getstring = textView.getText().toString();
//Help to continue :)
}
});
}
}
I want to copy the Text in TextView textView to clipboard when the Button bCopy is pressed! Please do help...
use this code
This can be done in Kotlin like this:
Where
file.readText()
is your input string.Here the method to copy text to clipboard:
This method is working on all android devices.