How to work with TextWatcher inside RecyclerViewAdapter
I have a recyclerview and this is the item.
https://i.stack.imgur.com/dKwYx.png▾
The adapter almost works fine. The problem is when I try to add the quantity using the EditText, it doesnt work. I tried adding a TextWatcher but nothing happens. I think I'm not using it properly. This is my class inside the adapter:
class ProductoViewHolder(view: View) : RecyclerView.ViewHolder(view) {
var nombreProducto: TextView = view.tv_producto_seleccion...