I'm trying to get data from bottom to top (from the last item uploaded to the first item uploaded like Instagram) but I couldn't make this. I searched a lot and found this answer here.
I made it with firebaseRecyclerAdapter and worked fine but with custom Adapter I couldn't do it!
here is the method I used:
@Override
public ItemsRecyclerView getItem(int pos){
return super.getItem(getCount() - 1 - pos);
}