I have been looking around on SO and GitHub to find a convenient way to search through my RecyclerView.
I have found this project: Searchable RecyclerView
This is the GitHub repo: repo
And this is a SO answer that explains how to use it: answer
It seems really easy to use but in the ViewHolder.class
there is this code:
private final ItemExampleBinding mBinding;
with this ItemExampleBinding object, that isn't mentioned anywhere, not on SO, nor on GitHub, nor on the project Homepage.
Have any of you used this Library before and can explain to me what this Object is and how to create it?
Thank you in advance.