In my RecyclerViewAdapter
, I would like to know if this item is the last. How can I check it?
The onBindViewHolder
only has the position value
@Override
public void onBindViewHolder(UserViewHolder userViewHolder, int position) {
//DO SOMETHING TO THE VIEW IF THIS IS THE LAST ITEM IN RECYCLERVIEW
}