Intent.ActionQuickView 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.
Activity Action: Quick view the data.
[Android.Runtime.Register("ACTION_QUICK_VIEW", ApiSince=24)]
public const string ActionQuickView;
[<Android.Runtime.Register("ACTION_QUICK_VIEW", ApiSince=24)>]
val mutable ActionQuickView : string
Field Value
Implements
- Attributes
Remarks
Activity Action: Quick view the data. Launches a quick viewer for a URI or a list of URIs.
Activities handling this intent action should handle the vast majority of MIME types rather than only specific ones.
Quick viewers must render the quick view image locally, and must not send file content outside current device.
Input: #getData
is a mandatory content URI of the item to preview. #getClipData
contains an optional list of content URIs if there is more than one item to preview. #EXTRA_INDEX
is an optional index of the URI in the clip data to show first. #EXTRA_QUICK_VIEW_FEATURES
is an optional extra indicating the features that can be shown in the quick view UI.
Output: nothing.
Java documentation for android.content.Intent.ACTION_QUICK_VIEW
.
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.