Reputation: 11
Have you seen these password managers like Lastpass ? They allow you to copy-paste via Notification bar in Android. Typically, the sequence is like this..
Can anyone break this down into steps and guide me how I can implement this kind of a structure...
Thanks
Upvotes: 1
Views: 1087
Reputation: 1007296
Step #1: Raise a Notification
, with a getBroadcast()
PendingIntent
pointing to a BroadcastReceiver
of yours.
Step #2: In that BroadcastReceiver
, copy the data to the clipboard using ClipboardManager
.
Upvotes: 1