Stay organized with collections
Save and categorize content based on your preferences.
QuickViewConstants
public
class
QuickViewConstants
extends Object
Constants for Intent.ACTION_QUICK_VIEW
.
Summary
Inherited methods |
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this object.
|
boolean
|
equals(Object obj)
Indicates whether some other object is "equal to" this one.
|
void
|
finalize()
Called by the garbage collector on an object when garbage collection
determines that there are no more references to the object.
|
final
Class<?>
|
getClass()
Returns the runtime class of this Object .
|
int
|
hashCode()
Returns a hash code value for the object.
|
final
void
|
notify()
Wakes up a single thread that is waiting on this object's
monitor.
|
final
void
|
notifyAll()
Wakes up all threads that are waiting on this object's monitor.
|
String
|
toString()
Returns a string representation of the object.
|
final
void
|
wait(long timeoutMillis, int nanos)
Causes the current thread to wait until it is awakened, typically
by being notified or interrupted, or until a
certain amount of real time has elapsed.
|
final
void
|
wait(long timeoutMillis)
Causes the current thread to wait until it is awakened, typically
by being notified or interrupted, or until a
certain amount of real time has elapsed.
|
final
void
|
wait()
Causes the current thread to wait until it is awakened, typically
by being notified or interrupted.
|
|
Constants
FEATURE_DELETE
public static final String FEATURE_DELETE
Feature to delete an individual document. Quick viewer implementations must use
Storage Access Framework to both verify delete permission and to delete content.
Constant Value:
"android:delete"
FEATURE_DOWNLOAD
public static final String FEATURE_DOWNLOAD
Feature to download a document to the local file system.
Constant Value:
"android:download"
FEATURE_EDIT
public static final String FEATURE_EDIT
Feature to edit a document using system standard editing mechanism, like
Intent.ACTION_EDIT
.
Constant Value:
"android:edit"
FEATURE_PRINT
public static final String FEATURE_PRINT
Feature to print a document.
Constant Value:
"android:print"
FEATURE_SEND
public static final String FEATURE_SEND
Feature to view a document using system standard sending mechanism, like
Intent.ACTION_SEND
.
Constant Value:
"android:send"
FEATURE_VIEW
public static final String FEATURE_VIEW
Feature to view a document using system standard viewing mechanism, like
Intent.ACTION_VIEW
.
Constant Value:
"android:view"
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# QuickViewConstants\n\nAdded in [API level 26](/guide/topics/manifest/uses-sdk-element#ApiLevels) \nSummary: [Constants](#constants) \\| [Inherited Methods](#inhmethods) \n\nQuickViewConstants\n==================\n\n*** ** * ** ***\n\n[Kotlin](/reference/kotlin/android/content/QuickViewConstants \"View this page in Kotlin\") \\|Java\n\n\n`\npublic\n\n\nclass\nQuickViewConstants\n`\n\n\n`\n\nextends `[Object](/reference/java/lang/Object)`\n\n\n`\n\n`\n\n\n`\n\n|---|------------------------------------|\n| [java.lang.Object](/reference/java/lang/Object) ||\n| ↳ | android.content.QuickViewConstants |\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\nConstants for [Intent.ACTION_QUICK_VIEW](/reference/android/content/Intent#ACTION_QUICK_VIEW).\n\nSummary\n-------\n\n| ### Constants ||\n|---------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [String](/reference/java/lang/String) | [FEATURE_DELETE](/reference/android/content/QuickViewConstants#FEATURE_DELETE) Feature to delete an individual document. |\n| [String](/reference/java/lang/String) | [FEATURE_DOWNLOAD](/reference/android/content/QuickViewConstants#FEATURE_DOWNLOAD) Feature to download a document to the local file system. |\n| [String](/reference/java/lang/String) | [FEATURE_EDIT](/reference/android/content/QuickViewConstants#FEATURE_EDIT) Feature to edit a document using system standard editing mechanism, like [Intent.ACTION_EDIT](/reference/android/content/Intent#ACTION_EDIT). |\n| [String](/reference/java/lang/String) | [FEATURE_PRINT](/reference/android/content/QuickViewConstants#FEATURE_PRINT) Feature to print a document. |\n| [String](/reference/java/lang/String) | [FEATURE_SEND](/reference/android/content/QuickViewConstants#FEATURE_SEND) Feature to view a document using system standard sending mechanism, like [Intent.ACTION_SEND](/reference/android/content/Intent#ACTION_SEND). |\n| [String](/reference/java/lang/String) | [FEATURE_VIEW](/reference/android/content/QuickViewConstants#FEATURE_VIEW) Feature to view a document using system standard viewing mechanism, like [Intent.ACTION_VIEW](/reference/android/content/Intent#ACTION_VIEW). |\n\n| ### Inherited methods |\n|-----------------------|---|\n| From class ` `[java.lang.Object](/reference/java/lang/Object)` ` |---------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ` `[Object](/reference/java/lang/Object) | ` `[clone](/reference/java/lang/Object#clone())`() ` Creates and returns a copy of this object. | | ` boolean` | ` `[equals](/reference/java/lang/Object#equals(java.lang.Object))`(`[Object](/reference/java/lang/Object)` obj) ` Indicates whether some other object is \"equal to\" this one. | | ` void` | ` `[finalize](/reference/java/lang/Object#finalize())`() ` Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. | | ` final `[Class](/reference/java/lang/Class)`\u003c?\u003e` | ` `[getClass](/reference/java/lang/Object#getClass())`() ` Returns the runtime class of this `Object`. | | ` int` | ` `[hashCode](/reference/java/lang/Object#hashCode())`() ` Returns a hash code value for the object. | | ` final void` | ` `[notify](/reference/java/lang/Object#notify())`() ` Wakes up a single thread that is waiting on this object's monitor. | | ` final void` | ` `[notifyAll](/reference/java/lang/Object#notifyAll())`() ` Wakes up all threads that are waiting on this object's monitor. | | ` `[String](/reference/java/lang/String) | ` `[toString](/reference/java/lang/Object#toString())`() ` Returns a string representation of the object. | | ` final void` | ` `[wait](/reference/java/lang/Object#wait(long,%20int))`(long timeoutMillis, int nanos) ` Causes the current thread to wait until it is awakened, typically by being *notified* or *interrupted*, or until a certain amount of real time has elapsed. | | ` final void` | ` `[wait](/reference/java/lang/Object#wait(long))`(long timeoutMillis) ` Causes the current thread to wait until it is awakened, typically by being *notified* or *interrupted*, or until a certain amount of real time has elapsed. | | ` final void` | ` `[wait](/reference/java/lang/Object#wait())`() ` Causes the current thread to wait until it is awakened, typically by being *notified* or *interrupted*. | ||\n\nConstants\n---------\n\n### FEATURE_DELETE\n\nAdded in [API level 28](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic static final String FEATURE_DELETE\n```\n\nFeature to delete an individual document. Quick viewer implementations must use\nStorage Access Framework to both verify delete permission and to delete content.\n\n\u003cbr /\u003e\n\n**See also:**\n\n- [DocumentsContract.Document.FLAG_SUPPORTS_DELETE](/reference/android/provider/DocumentsContract.Document#FLAG_SUPPORTS_DELETE)\n- [DocumentsContract.deleteDocument(ContentResolver, android.net.Uri)](/reference/android/provider/DocumentsContract#deleteDocument(android.content.ContentResolver,%20android.net.Uri))\n\nConstant Value:\n\n\"android:delete\"\n\n\n### FEATURE_DOWNLOAD\n\nAdded in [API level 26](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic static final String FEATURE_DOWNLOAD\n```\n\nFeature to download a document to the local file system.\n\n\u003cbr /\u003e\n\n**See also:**\n\n- [Intent.EXTRA_QUICK_VIEW_FEATURES](/reference/android/content/Intent#EXTRA_QUICK_VIEW_FEATURES)\n- [Intent.ACTION_QUICK_VIEW](/reference/android/content/Intent#ACTION_QUICK_VIEW)\n\nConstant Value:\n\n\"android:download\"\n\n\n### FEATURE_EDIT\n\nAdded in [API level 26](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic static final String FEATURE_EDIT\n```\n\nFeature to edit a document using system standard editing mechanism, like\n[Intent.ACTION_EDIT](/reference/android/content/Intent#ACTION_EDIT).\n\n\u003cbr /\u003e\n\n**See also:**\n\n- [Intent.EXTRA_QUICK_VIEW_FEATURES](/reference/android/content/Intent#EXTRA_QUICK_VIEW_FEATURES)\n- [Intent.ACTION_QUICK_VIEW](/reference/android/content/Intent#ACTION_QUICK_VIEW)\n\nConstant Value:\n\n\"android:edit\"\n\n\n### FEATURE_PRINT\n\nAdded in [API level 26](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic static final String FEATURE_PRINT\n```\n\nFeature to print a document.\n\n\u003cbr /\u003e\n\n**See also:**\n\n- [Intent.EXTRA_QUICK_VIEW_FEATURES](/reference/android/content/Intent#EXTRA_QUICK_VIEW_FEATURES)\n- [Intent.ACTION_QUICK_VIEW](/reference/android/content/Intent#ACTION_QUICK_VIEW)\n\nConstant Value:\n\n\"android:print\"\n\n\n### FEATURE_SEND\n\nAdded in [API level 26](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic static final String FEATURE_SEND\n```\n\nFeature to view a document using system standard sending mechanism, like\n[Intent.ACTION_SEND](/reference/android/content/Intent#ACTION_SEND).\n\n\u003cbr /\u003e\n\n**See also:**\n\n- [Intent.EXTRA_QUICK_VIEW_FEATURES](/reference/android/content/Intent#EXTRA_QUICK_VIEW_FEATURES)\n- [Intent.ACTION_QUICK_VIEW](/reference/android/content/Intent#ACTION_QUICK_VIEW)\n\nConstant Value:\n\n\"android:send\"\n\n\n### FEATURE_VIEW\n\nAdded in [API level 26](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic static final String FEATURE_VIEW\n```\n\nFeature to view a document using system standard viewing mechanism, like\n[Intent.ACTION_VIEW](/reference/android/content/Intent#ACTION_VIEW).\n\n\u003cbr /\u003e\n\n**See also:**\n\n- [Intent.EXTRA_QUICK_VIEW_FEATURES](/reference/android/content/Intent#EXTRA_QUICK_VIEW_FEATURES)\n- [Intent.ACTION_QUICK_VIEW](/reference/android/content/Intent#ACTION_QUICK_VIEW)\n\nConstant Value:\n\n\"android:view\""]]