Package com.pspdfkit.ui
Interface PdfPasswordView.OnPasswordSubmitListener
-
- All Implemented Interfaces:
public interface PdfPasswordView.OnPasswordSubmitListener
Listener for entered password being submitted.
-
-
Method Summary
Modifier and Type Method Description abstract void
onPasswordSubmit(@NonNull() PdfPasswordView pdfPasswordView, @NonNull() String password)
Called when the password is submitted by user pressing enter on the keyboard. -
-
Method Detail
-
onPasswordSubmit
abstract void onPasswordSubmit(@NonNull() PdfPasswordView pdfPasswordView, @NonNull() String password)
Called when the password is submitted by user pressing enter on the keyboard. If the password text box is empty, this listener will not be triggered.
- Parameters:
pdfPasswordView
- View on which the action is happening.password
- String representation of the entered password.
-
-
-
-