1

有没有办法知道用户何时按下键盘上的 ok 键?

4

2 回答 2

3

调用setOnEditorActionListener()您的,当用户按下 IME 操作键时EditText,您的OnEditorActionListener将被调用。onEditorAction()

请注意,并非所有 IME 都有这样的密钥,所以不要指望它。

于 2012-04-29T23:23:16.420 回答
0

尝试KeyEvent.FLAG_EDITOR_ACTION

来自:http: //developer.android.com/reference/android/view/KeyEvent.html#FLAG_EDITOR_ACTION

于 2012-04-29T23:16:37.863 回答