Skip to content

Instantly share code, notes, and snippets.

View guillermomuntaner's full-sized avatar

Guillermo Muntaner guillermomuntaner

View GitHub Profile
@guillermomuntaner
guillermomuntaner / CutCopyPaste.java
Last active December 11, 2022 03:24
EditText which notifies of Cut, Copy and Paste events via an attachable listener
import android.content.Context;
import android.util.AttributeSet;
import android.widget.EditText;
/**
* Original:
* An EditText, which notifies when something was cut/copied/pasted inside it.
* @author Lukas Knuth
* @version 1.0
*