how to copy android c2dm message to android clipboard

119 Views Asked by At

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.

1

There are 1 best solutions below

0
On BEST ANSWER

Use ClipboardManager to put things on the clipboard. Here is a sample project demonstrating the use of ClipboardManager. Your BroadcastReceiver for C2DM will need to determine what part of the message goes into the clipboard and use ClipboardManager to accomplish that.