首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Android监听键盘下的确定键等

2012-09-17 
Android监听键盘上的确定键等mETCommentContent.setOnEditorActionListener(new OnEditorActionListener()

Android监听键盘上的确定键等

mETCommentContent.setOnEditorActionListener(new OnEditorActionListener() {@Overridepublic boolean onEditorAction(TextView v, int actionId, KeyEvent event) {if (actionId == EditorInfo.IME_ACTION_DONE) {hideSoftInput();}return false;}});


热点排行