android監聽軟鍵盤enter按鍵

android監聽軟鍵盤enter按鍵,網上找了幾個方案都不好使,自己打印日誌,得出下面這個方式

 

        et.setImeOptions(EditorInfo.IME_ACTION_SEND);
        etNum.setOnEditorActionListener(new TextView.OnEditorActionListener() {
            @Override
            public boolean onEditorAction(TextView textView, int actionId, KeyEvent keyEvent) {
                if ((!T.isFastClick() &&actionId==EditorInfo.IME_ACTION_SEND)) {
                    login();
                    return true;
                }
                return false;
            }
        });

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章