Added the onLongClickListener

Added this listener to the TrendingAdapter holder.
This commit is contained in:
Relwi 2022-05-05 21:59:38 +02:00
parent 87466063d8
commit 9c906ee973
No known key found for this signature in database
GPG Key ID: 3316DC3D260D0163

View File

@ -73,6 +73,7 @@ class TrendingAdapter(private val videoFeed: List<StreamItem>): RecyclerView.Ada
.replace(R.id.container, frag)
.commitNow()
}
holder.v.setOnLongClickListener { TODO("Not yet implemented") }
}
}
class CustomViewHolder(val v: View): RecyclerView.ViewHolder(v){