해결된 질문
작성
·
215
0
아래와 같은 오류가 나는데
view = LayoutInflater.from(parent?.context).inflate(R.layout.board_list_item,parent,false) 요 부분에서 납니다.
아래는 제 소스입니다.
package com.example.mytoproject.board
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.BaseAdapter
import com.example.mytoproject.R
import kotlinx.coroutines.NonDisposableHandle.parent
class BoardListLVAdapter(val boardList:MutableList<BoardModel>): BaseAdapter() {
override fun getCount(): Int {
return boardList.size
}
override fun getItem(p0: Int): Any {
return boardList[p0]
}
override fun getItemId(p0: Int): Long {
return p0.toLong()
}
override fun getView(p0: Int, p1: View?, p2: ViewGroup?): View {
var view = p1
if (view ==null) {
view = LayoutInflater.from(parent?.context).inflate(R.layout.board_list_item,parent,false)
}
return view!!
}
}
잘 해결하셧다니 다행입니당
끝까지 파이팅입니다!