Reputation: 359
I know android broadcasts most of the events that occur one common is when battery is low or when there is an incoming call , I was wondering if there is some broadcast fired when some text is copied to the clipboard
Upvotes: 0
Views: 445
Reputation: 1007296
I was wondering if there is some broadcast fired when some text is copied to the clipboard
No, sorry. You can register a listener with the ClipboardManager
, but there is no system broadcast for clipboard events.
Upvotes: 1