AutoCompleteTextView란 네이버 구글 등 자동완성 검색 기능을 사용할 때 사용한다. 1. xml 만들기 위와 같이 만들어 준다. android:completionThreshold="2" copletionThreshold는 몇 개의 문자를 입력해야 자동완성 리스트가 나오는지 설정한다. 2. 항목 리스트 구성하기 val list = mutableListOf("test1", "test2", "test3") 3. 어댑터 등록 val adapter = ArrayAdapter(this, android.R.layout.simple_dropdown_item_1line, wordList) auto_tv.setAdapter(adapter) 결과 화면 completionThreshold를 1로 설정해 줬을때의..