当前位置: 代码迷 >> Android >> Android监听键盘下的确定键等
  详细解决方案

Android监听键盘下的确定键等

热度:84   发布时间:2016-05-01 14:44:37.0
Android监听键盘上的确定键等
mETCommentContent.setOnEditorActionListener(new OnEditorActionListener() {						@Override			public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {				if (actionId == EditorInfo.IME_ACTION_DONE) {					hideSoftInput();				}				return false;			}		});


  相关解决方案