반응형
- 액티비티에 의존
SectionButtonViewHolder(
activity.layoutInflater.inflate(
R.layout.item_section_button,
parent,
false
), onEventListener, mItems
)
- 액티비티에 의존 X
SectionButtonViewHolder(
itemView = LayoutInflater.from(parent.context)
.inflate(R.layout.item_section_button, parent, false),
onEventListener = onEventListener,
items = mItems
)
반응형
'코딩 > 코드리뷰' 카테고리의 다른 글
TakeIf로 값 넣기 (0) | 2021.12.20 |
---|---|
변수 3개 선언하기 (0) | 2021.11.23 |
코틀린 mapTo (0) | 2021.11.18 |
kotlin toLowerCase() Deprecated (0) | 2021.09.29 |
for문 같은 데이터 찾아서 position 저장 (0) | 2021.09.09 |