We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 941fcee + 20176ed commit 787fa9dCopy full SHA for 787fa9d
core/java/android/content/ClipboardManager.java
@@ -77,7 +77,20 @@ public void handleMessage(Message msg) {
77
}
78
};
79
80
+ /**
81
+ * Defines a listener callback that is invoked when the primary clip on the clipboard changes.
82
+ * Objects that want to register a listener call
83
+ * {@link android.content.ClipboardManager#addPrimaryClipChangedListener(OnPrimaryClipChangedListener)
84
+ * addPrimaryClipChangedListener()} with an
85
+ * object that implements OnPrimaryClipChangedListener.
86
+ *
87
+ */
88
public interface OnPrimaryClipChangedListener {
89
+
90
91
+ * Callback that is invoked by {@link android.content.ClipboardManager} when the primary
92
+ * clip changes.
93
94
void onPrimaryClipChanged();
95
96
0 commit comments