EditText still receives hardware keyboard input after being disabled, and onKey is not called — why does this happen?
Summary The issue at hand is that an EditText in an Android app still receives hardware keyboard input even after being disabled using isEnabled = false. Additionally, the onKey listener set on the EditText is not triggered when keys are pressed on a hardware keyboard. This behavior is unexpected and can lead to unintended consequences … Read more