Most visited

Recently visited

Added in API level 19

PrintDocumentAdapter.LayoutResultCallback

public static abstract class PrintDocumentAdapter.LayoutResultCallback
extends Object

java.lang.Object
   ↳ android.print.PrintDocumentAdapter.LayoutResultCallback


Base class for implementing a callback for the result of onLayout(PrintAttributes, PrintAttributes, CancellationSignal, LayoutResultCallback, Bundle).

Summary

Public methods

void onLayoutCancelled()

Notifies that layout was cancelled as a result of a cancellation request.

void onLayoutFailed(CharSequence error)

Notifies that an error occurred while laying out the document.

void onLayoutFinished(PrintDocumentInfo info, boolean changed)

Notifies that the layout finished and whether the content changed.

Inherited methods

From class java.lang.Object

Public methods

onLayoutCancelled

Added in API level 19
void onLayoutCancelled ()

Notifies that layout was cancelled as a result of a cancellation request.

onLayoutFailed

Added in API level 19
void onLayoutFailed (CharSequence error)

Notifies that an error occurred while laying out the document.

Parameters
error CharSequence: The localized error message. shown to the user. May be null if error is unknown.

onLayoutFinished

Added in API level 19
void onLayoutFinished (PrintDocumentInfo info, 
                boolean changed)

Notifies that the layout finished and whether the content changed.

Parameters
info PrintDocumentInfo: An info object describing the document. Cannot be null.
changed boolean: Whether the layout changed.

See also:

Hooray!