Dev/Android

Android - Adapter 의 역활

healthyryu 2017. 3. 4. 15:30

Android - RecyclerView 에서 Adapter 의 역활



The adapter does create ViewHolder objects and inflates item views in its onCreateViewHolder function, it also returns the number of items in the data source, and binds data from the data source to each item (even if we pass the responsibility to the ViewHolder). It doesn't cache views associated with each item (that's the job of the ViewHolder class) nor does it recycle them; that’s what our RecyclerView does.

1. ViewHolder 객체 생성.

2. onCreateVieweHolder 함수로 각 item view 들을 view 객체로 만든다.

3. 데이터가 들어있는 곳에서 item 의 개수를 알려준다.

4. 데이터가 들어있는 곳에서의 데이터를 각 item 에 결합 시켜준다.

반응형