Added in API level 24

DragAndDropPermissions

class DragAndDropPermissions : Parcelable
kotlin.Any
   ↳ android.view.DragAndDropPermissions

DragAndDropPermissions controls the access permissions for the content URIs associated with a DragEvent.

Permission are granted when this object is created by Activity.requestDragAndDropPermissions. Which permissions are granted is defined by the set of flags passed to View.startDragAndDrop by the app that started the drag operation.

The lifecycle of the permissions is bound to the activity used to call requestDragAndDropPermissions. The permissions are revoked when this activity is destroyed, or when release() is called, whichever occurs first.

If you anticipate that your application will receive a large number of drops (e.g. document editor), you should try to call release() on the obtained permissions as soon as they are no longer required. Permissions can be added to your activity's android.app.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.

Summary

Inherited constants
Public methods
Int

Unit

Revoke permissions explicitly.

Unit
writeToParcel(destination: Parcel, flags: Int)

Properties
static Parcelable.Creator<DragAndDropPermissions!>

Public methods

describeContents

Added in API level 24
fun describeContents(): Int
Return
Int a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR

release

Added in API level 24
fun release(): Unit

Revoke permissions explicitly.

writeToParcel

Added in API level 24
fun writeToParcel(
    destination: Parcel,
    flags: Int
): Unit
Parameters
dest The Parcel in which the object should be written. This value cannot be null.
flags Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE. Value is either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES

Properties

CREATOR

Added in API level 24
static val CREATOR: Parcelable.Creator<DragAndDropPermissions!>