View Binding in Recyclerview Adapter

Dhruv Parmar
1 min readSep 27, 2021
View binding in Recyclerview Adapter

View binding should be the preferred way to may your xml views with your kotlin file while developing android applications. A post how to apply view binding in your activity and fragment classes is already been posted, which you should check out first if you do not have idea about what view binding is and how to use it.

Now, there are some confusions for new programmers how to use view binding in…

--

--