Cursor Adapter#2 - Custom Cursor Adapter
SimpleCursorAdapter나 SimpleTreeCusorAdapter같은 경우 정해진 layout내의 view요소에 값을 할당 하는 방식으로 동작한다. 만약, DB에서 문자를 찾아 만드는 자동완성뷰나, 스피너를 만들기 위해서는 CursorAdapter를 상속받아 직접 구현해야 한다. 이는 Adpater를 만들기 위해 BaseAdatper를 상속받아 구현하는것과 비슷하다. Cursor Adatper의 상속CursorAdatper를 상속할때는 아래와 같은 세가지 작업을 수행한다.1. Constructor 생성2. bindView() 구현3. newView() 구현 예제) Text의 자동완성 기능을 Cursor Adapter를 이용하여 구현한다.import android.provider.Contact..