From 36ef69743cde0765c823e48e2429958932ffb6c3 Mon Sep 17 00:00:00 2001 From: Kevin Hufnagle Date: Fri, 27 Sep 2019 23:51:27 +0000 Subject: [PATCH] docs: Added link to multi-window drag how-to guide Test: make ds-docs -j32 Bug: 71008103 Change-Id: Ifcc50920cf3828697add018d1d3a6a827c7c9f98 --- core/java/android/view/DragAndDropPermissions.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/java/android/view/DragAndDropPermissions.java b/core/java/android/view/DragAndDropPermissions.java index e72ff38ce3f04..d47604d6ec417 100644 --- a/core/java/android/view/DragAndDropPermissions.java +++ b/core/java/android/view/DragAndDropPermissions.java @@ -37,7 +37,7 @@ import com.android.internal.view.IDragAndDropPermissions; * View.startDragAndDrop} by the app that started the drag operation. *

*

- * The life cycle of the permissions is bound to the activity used to call {@link + * The lifecycle of the permissions is bound to the activity used to call {@link * android.app.Activity#requestDragAndDropPermissions(DragEvent) requestDragAndDropPermissions}. The * permissions are revoked when this activity is destroyed, or when {@link #release()} is called, * whichever occurs first. @@ -49,6 +49,10 @@ import com.android.internal.view.IDragAndDropPermissions; * {@link Activity#onSaveInstanceState} bundle and later retrieved in order to manually release * the permissions once they are no longer needed. *

+ *

+ * Learn more about drag permissions + * in multi-window mode. + *

*/ public final class DragAndDropPermissions implements Parcelable {