androidandroid-edittextimeoptions

EditText input method action not working when setting imeActionLabel


I have an Edittext with imeoptions asactiongo. and I triggered my event when pressing soft keyboard enter button.

mModelId.setOnEditorActionListener(new OnEditorActionListener() {
        @Override
        public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
            boolean handled = false;
           // if (event.getKeyCode() == KeyEvent.KEYCODE_ENTER) {
            if (actionId == EditorInfo.IME_ACTION_GO) {

                id = mModelId.getText().toString();
                System.out.println("Model id in Edittext:-"+ id);
                Toast.makeText(getActivity(), "You entered "+id, Toast.LENGTH_LONG).show();
                System.out.println("Before Call Volley");
                callVolley();
                handled = true;
            }
            return handled;
        }
    });

Everything works fine but when I add actionlabel to enter key the event is not firing. mModelId.setImeActionLabel("Search Model", KeyEvent.KEYCODE_ENTER);. What may be the problem?


Solution

  • try this

    declare edittext and OnEditorActionListener() like this

    mModelId = (EditText) findViewById(R.id.edittext_id);
    mModelId.setImeActionLabel("Search Model", KeyEvent.KEYCODE_ENTER);
    mModelId.setOnEditorActionListener(new OnEditorActionListener() {
        @Override
        public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
             boolean handled = false;
    
             if (actionId == KeyEvent.KEYCODE_ENTER) {
    
                  id = mModelId.getText().toString();
                  Toast.makeText(getActivity(), "You entered "+id,    Toast.LENGTH_LONG).show();
                  callVolley();
                  handled = true;
                }
                return handled;
            }
    });
    

    and you use imeoptions as actionGo then revome it, i think it override ImeActionLabel once try this and reply