在CATextField和CATextView的attachWithIME()函数中没有对KEY_BOARD_RETURN_ENTER处理
Opened this issue · 3 comments
iniwf commented
在CATextField和CATextView的attachWithIME()函数中没有对KEY_BOARD_RETURN_ENTER处理
9miao commented
你想要怎么处理?
iniwf commented
也就是说调用setKeyboardReturnType(KEY_BOARD_RETURN_ENTER);
键盘界面不会变成回车键,而是显示“完成”键
iniwf commented
要在CATextField和CATextView的attachWithIME()函数中加入如下代码
else if (getKeyboardReturnType() == KEY_BOARD_RETURN_ENTER)
{
pGlView->setIMEKeyboardReturnEnter();
}