We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7139eb7 commit ae3de7cCopy full SHA for ae3de7c
app/src/main/java/com/surcumference/fingerprint/view/PasswordInputView.java
@@ -1,5 +1,6 @@
1
package com.surcumference.fingerprint.view;
2
3
+import android.app.AlertDialog;
4
import android.content.Context;
5
import android.graphics.Color;
6
import android.text.Editable;
@@ -123,6 +124,13 @@ protected void onAttachedToWindow() {
123
124
}, 200);
125
}
126
127
+ @Override
128
+ public AlertDialog showInDialog() {
129
+ AlertDialog dialog = super.showInDialog();
130
+ dialog.setCanceledOnTouchOutside(false);
131
+ return dialog;
132
+ }
133
+
134
@Override
135
public String getDialogTitle() {
136
return Lang.getString(R.id.enter_password);
0 commit comments