Is there a way to intercept app-wide copying to the clipboard in order to implement an app-only clipboard? I'm aware of ClipboardManager.OnPrimaryClipChanged but that is (1) system-wide, and (2) received AFTER the copying is done. I want to provide a local only clipboard to ensure the contents are kept secure within the app only.
I would rather not create my own ContextualActionBar to provide my own copy button as that would have to be done on every single screen. Thoughts anyone?