| 465 | ////////////////////////////////////////////////////////////////////////// |
| 466 | |
| 467 | bool TextFieldEx::attachWithIME() |
| 468 | { |
| 469 | bool ret = IMEDelegate::attachWithIME(); |
| 470 | if (ret) |
| 471 | { |
| 472 | // open keyboard |
| 473 | RenderView* renderView = _director->getRenderView(); |
| 474 | if (renderView) |
| 475 | renderView->setIMEKeyboardState(true); |
| 476 | } |
| 477 | return ret; |
| 478 | } |
| 479 | |
| 480 | bool TextFieldEx::detachWithIME() |
| 481 | { |
no test coverage detected