Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add Method Into Android Copy/Paste Global Contextual Menu?

Tags:

java

android

On textboxes in Android, onLongClick reveals a contextual menu that has the copy/paste methods. Is there any way to add another option (say, "copy to [insert application here]")?

It's trivial to do it within my application's contextual menu because I can just override onLongClick. My "copy to [insert application here]" method, however, would only work in my app's contextual menu; not in the default messaging's text selection contextual menu, for example.

Thanks!

like image 865
dvdhsu Avatar asked Nov 04 '22 23:11

dvdhsu


1 Answers

No, you cannot add to other applications' context menus.

like image 149
CommonsWare Avatar answered Nov 11 '22 07:11

CommonsWare