Package-level declarations

User interface components for signing PDFs.

Types

Link copied to clipboard
A dialog for adding a signature to a document by drawing, selecting an image, or typing.
Link copied to clipboard
data class ElectronicSignatureOptions(val signatureSavingStrategy: SignatureSavingStrategy = SignatureSavingStrategy.SAVE_IF_SELECTED, val signatureColorOptions: SignatureColorOptions = SignatureColorOptions.fromDefaults(), val signatureCreationModes: List<SignatureCreationMode> = listOf(SignatureCreationMode.DRAW, SignatureCreationMode.IMAGE, SignatureCreationMode.TYPE)) : Parcelable

Options for configuring the ElectronicSignatureFragment. An instance of this can be passed to .

Link copied to clipboard
Dialog showing information of a digital signature.
Link copied to clipboard
data class SignatureOptions(val signaturePickerOrientation: SignaturePickerOrientation = SignaturePickerOrientation.AUTOMATIC, val signatureSavingStrategy: SignatureSavingStrategy = SignatureSavingStrategy.SAVE_IF_SELECTED) : Parcelable

Options for configuring the SignaturePickerFragment. An instance of this can be passed to SignaturePickerFragment.show.

Link copied to clipboard

The SignaturePickerFragment can be used to create ink signatures to add to a document. The dialog provides a list of stored signatures, and a user interface for adding new signatures. To show the dialog, use .show providing the fragment manager of the current activity, and a callback for receiving the user's selection.

Link copied to clipboard
open class SignatureUiData
UI data for the newly drawn signature.