I have a customized EditText, which need to do customized "paste".
I overrode onTextContextMenuItem(int id) to handle "paste" requested by selecting context menu.
@Override
public boolean onTextContextMenuItem(int id) {
switch(id){
case android.R.id.paste:
doMyPaste();
return true;
}
}
This works in Android before 3.0.
In 3.0, however, there is a small "paste" widget near the cursor widget if it's long-pressed, or the cursor is tapped.

When user do "paste" from this widget, the onTextContextMenuItem(int id) won't be invoked. As a result, I can't do the customized paste.
Do any one knows what that small "paste" widget is? Which method should I overrode to do a my own "paste"?