Clear Clipboard on Android
问题 this is my first question, so be gentle :) I'm trying to clear the clipboard in Android. I've read doc the doc for the ClipboardManager and the public methods don't seem germane: http://developer.android.com/reference/android/text/ClipboardManager.html Any ideas of where I should start? 回答1: have you considered just setting it to empty string? 回答2: Try setText(null) on ClipBoardManager. 回答3: setText(null) on ClipBoardManager do not Clears the ClipBoard. While pesting on some other location