public
final
class
PrintDocument
extends Object
java.lang.Object | |
↳ | android.printservice.PrintDocument |
This class represents a printed document from the perspective of a print service. It exposes APIs to query the document and obtain its data.
Note: All methods of this class must be executed on the main application thread.
Public methods | |
---|---|
ParcelFileDescriptor
|
getData()
Gets the data associated with this document. |
PrintDocumentInfo
|
getInfo()
Gets the |
Inherited methods | |
---|---|
From
class
java.lang.Object
|
ParcelFileDescriptor getData ()
Gets the data associated with this document.
Note: It is a responsibility of the client to open a stream to the returned file descriptor, fully read the data, and close the file descriptor.
Returns | |
---|---|
ParcelFileDescriptor |
A file descriptor for reading the data. |
PrintDocumentInfo getInfo ()
Gets the PrintDocumentInfo
that describes this document.
Returns | |
---|---|
PrintDocumentInfo |
The document info. |