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 에 결합 시켜준다.
반응형
'Dev > Android' 카테고리의 다른 글
Android - webPage 띄우기 / Developing Android App (0) | 2017.03.07 |
---|---|
Android - Intent에 관해서 / Developing Android App / 공부내용 복기 (0) | 2017.03.06 |
Android - URL 생성 / Developing Android Apps 수업 (0) | 2017.03.03 |
RxJava - RxAndroid 공부 (0) | 2017.02.22 |
[Android] 안드로이드 - 폴더 안의 파일 이름 가져오기 (3) | 2017.02.21 |