TextWatcher를 사용하여 키보드 입력시 변경값 알아보기
2018. 8. 17.
TextWatcher이란? - 구글에서는 TextWatcher를 다음과 같이 설명하고 있습니다. When an object of a type is attached to an Editable, its methods will be called when the text is changed -> 변할수 있는 객체에 유형의 객체가 첨부되면, TextWatcher의 메소드가는 텍스트가 변경 될 때 해당 객체를 호출한다. 저는 연관 검색어 기능을 구현하기 위해 TextWatcher를 더 자세히 보게 되었습니다. 자세한 개념을 알고싶으신 분은 역시 https://developer.android.com/reference/android/text/TextWatcher 최고입니다 ! TextWatcher의 위 3가지 메소드 ..