diff --git a/core/java/android/view/OnReceiveContentListener.java b/core/java/android/view/OnReceiveContentListener.java index 3d9968c7f2c68..1e930e61c3bb9 100644 --- a/core/java/android/view/OnReceiveContentListener.java +++ b/core/java/android/view/OnReceiveContentListener.java @@ -74,13 +74,17 @@ public interface OnReceiveContentListener { * preserve the common behavior for inserting text. See the class javadoc for a sample * implementation. * - *
If implementing handling for text: if the view has a selection, the selection should - * be overwritten by the passed-in content; if there's no selection, the passed-in content - * should be inserted at the current cursor position. - * - *
If implementing handling for non-text content (e.g. images): the content may be - * inserted inline, or it may be added as an attachment (could potentially be shown in a - * completely separate view). + *
Handling different content + *