Intent.ExtraAllowMultiple Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Extra used to indicate that an intent can allow the user to select and return multiple items.
[Android.Runtime.Register("EXTRA_ALLOW_MULTIPLE")]
public const string ExtraAllowMultiple;
[<Android.Runtime.Register("EXTRA_ALLOW_MULTIPLE")>]
val mutable ExtraAllowMultiple : string
Field Value
Implements
- Attributes
Remarks
Extra used to indicate that an intent can allow the user to select and return multiple items. This is a boolean extra; the default is false. If true, an implementation is allowed to present the user with a UI where they can pick multiple items that are all returned to the caller. When this happens, they should be returned as the #getClipData()
part of the result Intent.
Java documentation for android.content.Intent.EXTRA_ALLOW_MULTIPLE
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.