AlertSweet Library


https://www.studytonight.com/post/alert-dialog-using-sweetalert-dialog-in-android-app#


exm:-  

SweetAlertDialog sweetAlertDialog;
sweetAlertDialog=new SweetAlertDialog(this);
sweetAlertDialog.setCancelable(false);
sweetAlertDialog.showCancelButton(true);
sweetAlertDialog.setTitle(getString(R.string.app_name));
sweetAlertDialog.setContentText(Message);
sweetAlertDialog.show();
sweetAlertDialog.setOnDismissListener(new DialogInterface.OnDismissListener() {
@Override
public void onDismiss(DialogInterface dialog) {
finish();
}
});

Did you find this article useful?