add onClickListener on list item

This commit is contained in:
Raffaele Mignone 2019-12-29 23:18:26 +01:00
parent 419b8c1faa
commit 583a19091e
Signed by: norangebit
GPG Key ID: F5255658CB220573
1 changed files with 3 additions and 0 deletions

View File

@ -33,6 +33,9 @@ class BoardsListAdapter internal constructor(
override fun onBindViewHolder(holder: BoardViewHolder, position: Int) {
val board = boards[position]
holder.itemView.setOnClickListener {
// TODO start board activity
}
holder.boardTitle.text = board.title
}