Skip to content

Instantly share code, notes, and snippets.

@Frankdroid7
Created April 4, 2019 21:05
Show Gist options
  • Save Frankdroid7/b43de35064f9cb0e744ee3327f73cad7 to your computer and use it in GitHub Desktop.
Save Frankdroid7/b43de35064f9cb0e744ee3327f73cad7 to your computer and use it in GitHub Desktop.
paste_button.setOnClickListener {
val editText2 = findViewById<EditText>(R.id.editText2)
if (clipboardManager.primaryClip!!.getItemAt(0).text == "Male"){
clipboardManager.primaryClip = ClipData.newPlainText("text", "Female")
}
val clipBoardText = clipboardManager.primaryClip!!.getItemAt(0).text
editText2.setText(clipBoardText)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment