128june

[Android Studio] editText 키보드에서 엔터 이벤트 처리하기 본문

Android Studio

[Android Studio] editText 키보드에서 엔터 이벤트 처리하기

128june 2020. 7. 21. 11:06
반응형
	// editText 입력 완료 후 엔터 이벤트 처리하기
        _변수_.setOnEditorActionListener(new TextView.OnEditorActionListener() {
            @Override
            public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
            
            /* 여기 안에서 처리하면 됨 */
                // 검색 페이지로 intent
                Intent it = new Intent(getContext(), 해당 페이지.class);
                it.putExtra("text", "기타 텍스트 넘김");
                startActivity(it);
            /* 여기 안에서 처리하면 됨 */

                return true;
            }
        });

 

반응형
Comments