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 PrintDocumentAdapter.onLayout(android.print.PrintAttributes, android.print.PrintAttributes, android.os.CancellationSignal, android.print.PrintDocumentAdapter.LayoutResultCallback, android.os.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 | |
|---|---|
Public methods
onLayoutCancelled
public void onLayoutCancelled ()
Notifies that layout was cancelled as a result of a cancellation request.
onLayoutFailed
public 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
public 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: