I have a Recyclerview , and I need to display a countdown on every row.
Recyclerview
Here is a similar question coutndown timers in listview It has a good solution ,
You can create CountDownTimer reference in ViewHolder class and create its instance in onBindViewHolder method of Adapter.
It works perfectly.
Tested Myself.