当前位置:   article > 正文

EditText的OnEditeorActionListener_android on editoraction

android on editoraction

EditText实现Action 监听


  1. mEditText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
  2. public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
  3. if (actionId == EditorInfo.IME_ACTION_GO || (event != null && event.getKeyCode() == KeyEvent.KEYCODE_ENTER)) {
  4. Toast.makeText(mContext, "go", Toast.LENGTH_SHORT).show();
  5. return true;
  6. }
  7. return false;
  8. }
  9. });


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/391036
推荐阅读
相关标签
  

闽ICP备14008679号