Package com.pspdfkit.ui.signatures
Class SignatureInfoDialog
-
- All Implemented Interfaces:
-
android.content.ComponentCallbacks
,android.content.DialogInterface.OnCancelListener
,android.content.DialogInterface.OnDismissListener
,android.view.View.OnCreateContextMenuListener
,androidx.activity.result.ActivityResultCaller
,androidx.lifecycle.HasDefaultViewModelProviderFactory
,androidx.lifecycle.LifecycleOwner
,androidx.lifecycle.ViewModelStoreOwner
,androidx.savedstate.SavedStateRegistryOwner
public class SignatureInfoDialog extends DialogFragment
Dialog showing information of a digital signature. To show the dialog in the current activity use show passing in a DigitalSignatureInfo instance.
-
-
Constructor Summary
Constructors Constructor Description SignatureInfoDialog()
-
Method Summary
Modifier and Type Method Description static void
show(@NonNull() FragmentManager fragmentManager, @NonNull() DigitalSignatureInfo signatureInfo, @Nullable() Runnable onDeleteSignature)
Creates and shows a SignatureInfoDialog instance. void
onCreate(@Nullable() Bundle savedInstanceState)
Dialog
onCreateDialog(Bundle savedInstanceState)
void
onSaveInstanceState(@NonNull() Bundle outState)
void
onDestroy()
-
-
Method Detail
-
show
static void show(@NonNull() FragmentManager fragmentManager, @NonNull() DigitalSignatureInfo signatureInfo, @Nullable() Runnable onDeleteSignature)
Creates and shows a SignatureInfoDialog instance. The dialog is a fragment that will be attached to the activity using the given
fragmentManager
.- Parameters:
fragmentManager
- The FragmentManager that is used to attach the dialog to the activity.signatureInfo
- The DigitalSignatureInfo for being displayed in the dialog.
-
onCreateDialog
@NonNull() Dialog onCreateDialog(Bundle savedInstanceState)
-
onSaveInstanceState
void onSaveInstanceState(@NonNull() Bundle outState)
-
onDestroy
void onDestroy()
-
-
-
-