如何将虚拟键盘中的下一个按钮与Edittext链接以在android中进行验证?

时间:2013-01-26 12:19:24

标签: android android-edittext android-softkeyboard

在我的应用程序中,我有五个编辑文本字段,在第一个文本字段中输入详细信息后,使用下一个按钮进入下一个编辑文本。在进入下一个字段之前,我必须验证第一个编辑文本字段,单击虚拟键盘中的下一个按钮。

1 个答案:

答案 0 :(得分:1)

try with this code onEditorAction u can get enter click in virtual keyboard

     et.setOnEditorActionListener(this);

     @Override
     public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
//if(actionId == EditorInfo.IME_ACTION_SEARCH || actionId == EditorInfo.IME_NULL|| //event.getKeyCode() == KeyEvent.KEYCODE_ENTER)

      if(actionId == EditorInfo.IME_ACTION_GO ){
       // do something here
      }
      return false;
     }