Intent.ExtraQuickViewFeatures Field

Definition

An optional extra of String[] indicating which quick view features should be made available to the user in the quick view UI while handing a Intent#ACTION_QUICK_VIEW intent.

[Android.Runtime.Register("EXTRA_QUICK_VIEW_FEATURES", ApiSince=26)]
public const string ExtraQuickViewFeatures;
[<Android.Runtime.Register("EXTRA_QUICK_VIEW_FEATURES", ApiSince=26)>]
val mutable ExtraQuickViewFeatures : string

Field Value

Implements

Attributes

Remarks

An optional extra of String[] indicating which quick view features should be made available to the user in the quick view UI while handing a Intent#ACTION_QUICK_VIEW intent. <li>Enumeration of features here is not meant to restrict capabilities of the quick viewer. Quick viewer can implement features not listed below. <li>Features included at this time are: QuickViewConstants#FEATURE_VIEW, QuickViewConstants#FEATURE_EDIT, QuickViewConstants#FEATURE_DELETE, QuickViewConstants#FEATURE_DOWNLOAD, QuickViewConstants#FEATURE_SEND, QuickViewConstants#FEATURE_PRINT.

Requirements: <li>Quick viewer shouldn't show a feature if the feature is absent in #EXTRA_QUICK_VIEW_FEATURES. <li>When #EXTRA_QUICK_VIEW_FEATURES is not present, quick viewer should follow internal policies. <li>Presence of an feature in #EXTRA_QUICK_VIEW_FEATURES, does not constitute a requirement that the feature be shown. Quick viewer may, according to its own policies, disable or hide features.

Java documentation for android.content.Intent.EXTRA_QUICK_VIEW_FEATURES.

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.

Applies to