VerificationCodeView icon indicating copy to clipboard operation
VerificationCodeView copied to clipboard

清空输入内容会出现输入框背景乱

Open dewi23 opened this issue 6 years ago • 2 comments

QQ图片20200113182046

dewi23 avatar Jan 13 '20 10:01 dewi23

可以改下VerificationCodeView这个类里的删除监听方法: 微信截图_20210707172146

ZSFeng avatar Jul 07 '21 09:07 ZSFeng

可以改成这样

/** * 监听删除 */ private void onKeyDelete() { for (int i = mPwdTextViews.length - 1; i >= 0; i--) { PwdTextView tv = mPwdTextViews[i]; if (!tv.getText().toString().trim().equals("")) { if (mEtPwd) { tv.clearPwd(); } tv.setText(""); // 添加删除完成监听 tv.setBackgroundDrawable(mEtBackgroundDrawableNormal); if (i == 0) { mPwdTextViews[0].setBackgroundDrawable(mEtBackgroundDrawableFocus); } else { if (i < mEtNumber) { mPwdTextViews[i - 1].setBackgroundDrawable(mEtBackgroundDrawableFocus); } } // 添加输入完成的监听 if (inputCompleteListener != null) { inputCompleteListener.inputComplete(); } break; } } }

iFCoder avatar Jul 28 '21 11:07 iFCoder