-
-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resolved OTP issue #2923
Resolved OTP issue #2923
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -5,12 +5,11 @@ | |||||||||||||||||||||||||||
import android.graphics.Color; | ||||||||||||||||||||||||||||
import android.graphics.drawable.GradientDrawable; | ||||||||||||||||||||||||||||
import android.text.Editable; | ||||||||||||||||||||||||||||
import android.text.InputFilter; | ||||||||||||||||||||||||||||
import android.text.InputType; | ||||||||||||||||||||||||||||
import android.text.TextWatcher; | ||||||||||||||||||||||||||||
import android.util.AttributeSet; | ||||||||||||||||||||||||||||
import android.util.Log; | ||||||||||||||||||||||||||||
import android.view.Gravity; | ||||||||||||||||||||||||||||
import android.view.KeyEvent; | ||||||||||||||||||||||||||||
import android.widget.EditText; | ||||||||||||||||||||||||||||
import android.widget.LinearLayout; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
|
@@ -81,7 +80,7 @@ private EditText createOtpEditText(int index) { | |||||||||||||||||||||||||||
editText.setGravity(Gravity.CENTER); | ||||||||||||||||||||||||||||
editText.setTextColor(isErrorState ? errorTextColor : textColor); | ||||||||||||||||||||||||||||
editText.setTextSize(textSize); | ||||||||||||||||||||||||||||
editText.setFilters(new InputFilter[]{new InputFilter.LengthFilter(1)}); | ||||||||||||||||||||||||||||
// editText.setFilters(new InputFilter[]{new InputFilter.LengthFilter(1)}); | ||||||||||||||||||||||||||||
editText.setInputType(InputType.TYPE_CLASS_NUMBER); | ||||||||||||||||||||||||||||
editText.setBackground(createBackgroundDrawable()); | ||||||||||||||||||||||||||||
editText.setId(index); | ||||||||||||||||||||||||||||
|
@@ -98,25 +97,49 @@ private EditText createOtpEditText(int index) { | |||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
editText.setOnKeyListener((v, keyCode, event) -> { | ||||||||||||||||||||||||||||
if (keyCode == KeyEvent.KEYCODE_DEL && event.getAction() == KeyEvent.ACTION_DOWN) { | ||||||||||||||||||||||||||||
EditText edt = (EditText) getChildAt(index); | ||||||||||||||||||||||||||||
if (index > 0) { | ||||||||||||||||||||||||||||
edt.setText(""); | ||||||||||||||||||||||||||||
getChildAt(index - 1).requestFocus(); | ||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||
edt.setText(""); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
return true; // Consume the event | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
return false; | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
editText.addTextChangedListener(new TextWatcher() { | ||||||||||||||||||||||||||||
private boolean isSelfTriggered = false; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
@Override | ||||||||||||||||||||||||||||
public void beforeTextChanged(CharSequence s, int start, int count, int after) { | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
@Override | ||||||||||||||||||||||||||||
public void onTextChanged(CharSequence s, int start, int before, int count) { | ||||||||||||||||||||||||||||
if (isSelfTriggered) return; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
setErrorState(false); | ||||||||||||||||||||||||||||
if (s.length() == 1) { | ||||||||||||||||||||||||||||
// Automatically move to the next EditText if current is filled | ||||||||||||||||||||||||||||
// Overwrite the existing value and move to the next EditText | ||||||||||||||||||||||||||||
if (index < digitCount - 1) { | ||||||||||||||||||||||||||||
getChildAt(index + 1).requestFocus(); | ||||||||||||||||||||||||||||
EditText nextEditText = (EditText) getChildAt(index + 1); | ||||||||||||||||||||||||||||
nextEditText.setText(""); // Clear next field | ||||||||||||||||||||||||||||
nextEditText.requestFocus(); | ||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||
checkOtpCompletion(); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
if (otpChangedListener != null) { | ||||||||||||||||||||||||||||
String otp = getOtpValue(); | ||||||||||||||||||||||||||||
otpChangedListener.onOtpChanged(otp); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
} else if (s.length() > 1) { | ||||||||||||||||||||||||||||
// If more than one character, replace with the latest input | ||||||||||||||||||||||||||||
editText.setText(String.valueOf(s.charAt(s.length() - 1))); | ||||||||||||||||||||||||||||
// editText.setSelection(1); // Move cursor to the end | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add input validation for numeric input Since } else if (s.length() > 1) {
- editText.setText(String.valueOf(s.charAt(s.length() - 1)));
+ char lastChar = s.charAt(s.length() - 1);
+ if (Character.isDigit(lastChar)) {
+ editText.setText(String.valueOf(lastChar));
+ } else {
+ editText.setText("");
+ } 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||
if (otpChangedListener != null) { | ||||||||||||||||||||||||||||
String otp = getOtpValue(); | ||||||||||||||||||||||||||||
|
@@ -127,9 +150,19 @@ public void onTextChanged(CharSequence s, int start, int before, int count) { | |||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
@Override | ||||||||||||||||||||||||||||
public void afterTextChanged(Editable s) { | ||||||||||||||||||||||||||||
if (isSelfTriggered) return; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
if (s.length() > 1) { | ||||||||||||||||||||||||||||
// Ensure only the last character is preserved | ||||||||||||||||||||||||||||
isSelfTriggered = true; | ||||||||||||||||||||||||||||
editText.setText(s.subSequence(s.length() - 1, s.length())); | ||||||||||||||||||||||||||||
editText.setSelection(1); // Place cursor after the character | ||||||||||||||||||||||||||||
isSelfTriggered = false; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
return editText; | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
|
@@ -200,8 +233,9 @@ public void setOtp(String otp) { | |||||||||||||||||||||||||||
if (i < otp.length()) { | ||||||||||||||||||||||||||||
editText.setText(String.valueOf(otp.charAt(i))); | ||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||
editText.setText(""); // Clear remaining fields if OTP is shorter | ||||||||||||||||||||||||||||
editText.setText(""); | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
editText.clearFocus(); // Ensure no field remains focused | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
Comment on lines
+238
to
241
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Enhance setOtp method with validation and notification Consider these improvements:
public void setOtp(String otp) {
if (otp.length() > digitCount) {
throw new IllegalArgumentException("OTP length exceeds the digit count");
}
+ if (!otp.matches("\\d*")) {
+ throw new IllegalArgumentException("OTP must contain only digits");
+ }
for (int i = 0; i < digitCount; i++) {
EditText editText = (EditText) getChildAt(i);
if (i < otp.length()) {
editText.setText(String.valueOf(otp.charAt(i)));
} else {
editText.setText("");
}
editText.clearFocus();
}
+ // Notify listeners
+ if (otpChangedListener != null) {
+ otpChangedListener.onOtpChanged(otp);
+ }
+ if (otp.length() == digitCount && otpCompleteListener != null) {
+ otpCompleteListener.onOtpComplete(otp);
+ }
}
|
||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ensure thread safety of the isSelfTriggered flag
The
isSelfTriggered
flag could potentially cause issues in multi-threaded scenarios. Consider using AtomicBoolean or synchronization.Also applies to: 123-124