Is there a way to register a method so that it's automatically called as soon as the user ends "text selection mode" (thereby copying selection to clipboard)?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

I think you're looking for ClipboardManager.addPrimaryClipChangedListener().

Edit - this is for Android 3.0, and I don't see any other clipboard-related apis in the earlier levels.

Also see the ClipboardManager docs in the copy and paste guide.

link|improve this answer
I think you're right. :) Unfortunately, it's only available from API level 11. I need something that would work at least on Android 2.2 (API level 8). developer.android.com/guide/appendix/api-levels.html#level11 Nevertheless, your answer is the correct one and so I am going to accept it, although I would love to see other suggestions that somehow work on API level 8 (polling?) – Regex Rookie Mar 7 '11 at 19:42
feedback

If you are using Android 3.0 you can add a listener with ClipboardManager.addPrimaryClipChangedListener().

link|improve this answer
feedback

I need the exact same functionality. For the moment I'm solving this with android.text.ClipboardManager and a java Timer that checks every second if the clipboard-text has changed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.