I'm trying to add a ProgressBar at the bottom of my RecyclerView but the problem is detecting the bottom of the RecyclerView.
My getItemViewType always return 1, because list.get(position) is always not null even when I scroll to the bottom of the RecyclerView, here's my code
@Override
public int getItemViewType(int position) {
return list.get(position) != null ? 1 : 0;
}
Can any body point the problem here?