Hello guys i fetched data from firebase in recyclerview. For better understanding my question please visit my previous question. How do i add the show more functionality to getting firebase database?
This is my previous question. For this i found some logic(it might be wrong). If i set query ,
Query sortPost=PostRef.orderByChild("count").limitToFirst(firstTenPost);
and i set the Scrolllistner to detect scroll reach at bottom
postList.addOnScrollListener(new RecyclerView.OnScrollListener() {
@Override
public void onScrollStateChanged(RecyclerView recyclerView, int newState) {
super.onScrollStateChanged(recyclerView, newState);firstTwoPost=2;
Toast.makeText(MainActivity.this, "Last", Toast.LENGTH_LONG).show();
//So here i want to add +10 items with show more in recyclerview
}
}
});