I am a beginner and I am having trouble with understanding a piece of code. Can someone please explain me when this function evoke and what is it for?
Here is my code :
public void onBindViewHolder(myViewHolder holder, int position) {
RecViewHolder currentdata = data.get(position);
holder.favChecker = currentdata.getFavChecker();
holder.serialID = currentdata.getSerialID();
holder.theClassName = currentdata.getTheClassName();
}