We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f04ae3 commit 413e9b3Copy full SHA for 413e9b3
core/java/android/content/ClipboardManager.java
@@ -70,7 +70,20 @@ public void handleMessage(Message msg) {
70
}
71
};
72
73
+ /**
74
+ * Defines a listener callback that is invoked when the primary clip on the clipboard changes.
75
+ * Objects that want to register a listener call
76
+ * {@link android.content.ClipboardManager#addPrimaryClipChangedListener(OnPrimaryClipChangedListener)
77
+ * addPrimaryClipChangedListener()} with an
78
+ * object that implements OnPrimaryClipChangedListener.
79
+ *
80
+ */
81
public interface OnPrimaryClipChangedListener {
82
+
83
84
+ * Callback that is invoked by {@link android.content.ClipboardManager} when the primary
85
+ * clip changes.
86
87
void onPrimaryClipChanged();
88
89
0 commit comments