I am trying to show a list of transactions in a recycler view.
Each transaction is represented by a CardView inside a constraint layout (see item_transaction.xml
).
Somehow, the functions of my RecyclerView Adapter (onCreateViewHolder
, onBindViewHolder
and getItemCount
) are never called (logs are never displayed - I removed most of them so the code is easier to read).
Therefore, the RecyclerView content doesn't display on my app.
It is also worth pointing out that I have a list of transactions called data
in my adapter. Whenever I set the data in the list, it does update. No issues there.