i have made it to notify me(via NotificationManager
) for every c2dm message i get in my app.
Can i copy that message to android clipboard??? If yes, how?
Thanks.
i have made it to notify me(via NotificationManager
) for every c2dm message i get in my app.
Can i copy that message to android clipboard??? If yes, how?
Thanks.
Copyright © 2021 Jogjafile Inc.
Use
ClipboardManager
to put things on the clipboard. Here is a sample project demonstrating the use ofClipboardManager
. YourBroadcastReceiver
for C2DM will need to determine what part of the message goes into the clipboard and useClipboardManager
to accomplish that.