The 'Go', 'Enter/Return', 'Search', ... keys are all synonyms of KeyEvent.KEYCODE_ENTER The KeyboardView only changes its appearance based on EditText inputMethod options.
All result in the character 10 / 0x0A to be produced.
Note that it will be caught and interpreted by webview internal logic unless you catch it yourself by overriding onKeyDown in your activity.
发布评论
评论(1)
“Go”、“Enter/Return”、“Search”等键都是 KeyEvent 的同义词。KEYCODE_ENTER
KeyboardView 仅根据 EditText 输入方法选项更改其外观。
所有结果都会产生字符 10 / 0x0A。
请注意,除非您自己通过重写 Activity 中的 onKeyDown 来捕获它,否则它将由 webview 内部逻辑捕获并解释。
The 'Go', 'Enter/Return', 'Search', ... keys are all synonyms of KeyEvent.KEYCODE_ENTER
The KeyboardView only changes its appearance based on EditText inputMethod options.
All result in the character 10 / 0x0A to be produced.
Note that it will be caught and interpreted by webview internal logic unless you catch it yourself by overriding onKeyDown in your activity.