Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我继承了 EditText 类并创建了我的自定义类 MyEditText。
并想检测Android中的按键(比如'a','b','c'......'0','1','2'......等)事件。如何?
似乎在按下“back”、“\”、“/”、“DEL”、“@”键时调用了覆盖方法 onKeyDown(int keyCode, KeyEvent event),但不适用于任何数字或字母。
也许您需要的不是按键事件,而是文本更改事件。然后你可以使用addTextChangedListener方法。