DatabaseReference ref2 = ref1.child("Faces");
ref2.limitToFirst(TOTAL_ITEM_EACH_LOAD)
.startAt(currentPage * TOTAL_ITEM_EACH_LOAD)
.orderByChild("uniqKey")
loadMoreData() method calling every time i scroll down.
my data size is only 20 then also its showing 20+ repeatative data
DatabaseReference ref2 = ref1.child("Faces");
ref2.limitToFirst(TOTAL_ITEM_EACH_LOAD)
.startAt(currentPage * TOTAL_ITEM_EACH_LOAD)
.orderByChild("uniqKey")
loadMoreData() method calling every time i scroll down.
my data size is only 20 then also its showing 20+ repeatative data