Update edit text fields for pins.

This commit is contained in:
Michelle Tang
2025-09-08 14:28:04 -04:00
parent d2fcb191b6
commit 49417bdf9d
6 changed files with 7 additions and 2 deletions

View File

@@ -275,6 +275,7 @@ class ChangeNumberRegistrationLockFragment : LoggingFragment(R.layout.fragment_c
private fun enableAndFocusPinEntry() {
binding.kbsLockPinInput.setEnabled(true)
binding.kbsLockPinInput.setFocusable(true)
binding.kbsLockPinInput.transformationMethod = PasswordTransformationMethod.getInstance()
ViewUtil.focusAndShowKeyboard(binding.kbsLockPinInput)
}