Get the data from the Firebase in limit to perform pull to refresh and load more functionality

15,730

Solution 1

You are missing orderByKey(). For any filtering queries you must use the ordering functions. Refer to the documentation

In your onRefresh method you need to set the limit:

 public void onRefresh() {
     // Refresh items  
     ///HERE "oldestPostId" IS THE KEY WHICH I GET THE LAST RECORDS FROM THE FIREBASE
                mChatRef.orderByKey().startAt(oldestPostId).limitToFirst(10).addListenerForSingleValueEvent(new ValueEventListener() {
.....

So the data you retrieve is the only 10 new records after you got your first 10 records.

Make sure to save the oldest key of the newly retrieved data so that on next refresh new data from this key is only retrieved.

Suggestion: Instead of adding a child value listener to find the last key, you can just use the value listener and get the last data snapshot with the size to get the last record's key.

Solution 2

restructure your database, set a new child id which is incremental like 0,1,2,3... etc

"chats": {
"-KZLKDF": {
  "id": 0,
  "message": "Hi",
  "name":"username"
},

then make a method for query

public void loadFromFirebase(int startValue,int endValue){

mChatRef.orderByChild(id).startAt(startValue).endAt(endValue).addListenerForSingleValueEvent(this);
}

make sure you have implemented addListenerForSingleValueEvent then do adapter related task. Initially call from onCreate method:

loadFromFirebase(0,10);

NB: loading new content in the list you have to be aware with adapter.

Share:
15,730
Ravindra Kushwaha
Author by

Ravindra Kushwaha

Contact email - [email protected] Now at 7th position from the top 10 developers of Madhya Pradesh India 🙂

Updated on June 05, 2022

Comments

  • Ravindra Kushwaha
    Ravindra Kushwaha about 2 years

    Yet now i am getting the all data from the FireBase at one time.What i want to do that getting data in LIMITS like 15 records at a time. Like in first time user get the 15 records from the Firebase and when user load more data at the bottom/TOP of the screen than 15 more records should come from Firebase and added to the bottom/TOP of the list.

    I have implemented the logic to get the 15 records at a top OR bottom of the database from Firebase like below:-

    public class ChatActivity extends AppCompatActivity implements FirebaseAuth.AuthStateListener {
    
        private FirebaseAuth mAuth;
        private DatabaseReference mChatRef;
    
        private Query postQuery;
        private String newestPostId;
        private String oldestPostId;
        private int startAt = 0;
        private SwipeRefreshLayout swipeRefreshLayout;
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_chat);
    
            mAuth = FirebaseAuth.getInstance();
            mAuth.addAuthStateListener(this);
    
            mChatRef = FirebaseDatabase.getInstance().getReference();
            mChatRef = mChatRef.child("chats");
    
             /////GETTING THE VIEW ID OF SWIPE LAYOUT
            swipeRefreshLayout = (SwipeRefreshLayout) findViewById(R.id.swipeRefreshLayout);
    
        /////GETTING FIRST 10 RECORDS FROM THE FIREBASE HERE
            mChatRef.limitToFirst(10).addListenerForSingleValueEvent(new ValueEventListener() {
                @Override
                public void onDataChange(DataSnapshot dataSnapshot) {
                    for (DataSnapshot child : dataSnapshot.getChildren()) {
                        oldestPostId = child.getKey();
                        System.out.println("here si the data==>>" + child.getKey());
                    }      
                }
    
                @Override
                public void onCancelled(DatabaseError databaseError) {
    
                }
            });
    
            //////FOR THE PULL TO REFRESH CODE IS HERE
           swipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
                @Override
                public void onRefresh() {
                    // Refresh items  
    
                 System.out.println("Here==>>> "+oldestPostId);
    
                    ///HERE "oldestPostId" IS THE KEY WHICH I GET THE LAST RECORDS FROM THE FIREBASE
    
                    mChatRef.startAt(oldestPostId).addListenerForSingleValueEvent(new ValueEventListener() {
                @Override
                public void onDataChange(DataSnapshot dataSnapshot) {
                    for (DataSnapshot child : dataSnapshot.getChildren()) {
    
                        System.out.println("here AFTER data added==>>" + child.getKey());
                    }
                }
    
                @Override
                public void onCancelled(DatabaseError databaseError) {
    
                }
            });
    
                }
            });
        }
    

    I have searched here on SO for it , but did not get the expected result, below link which i have searched for it

    1. First Link
    2. Second Link
    3. Third Link
    4. Forth Link

    Please look at my firebase data structure in image.
    Data of firebase

    I have implemented the logic for the getting 15 OR 10 records at first time and it works..and also implemented the logic for loading more records in limits but not getting proper solution (NOT WORKING) , please help and let me know where am i doing wrong..Thanks :)

    EDIT SOLUTION

    :- I have implemented the load more or pull to refresh functionality on this link:- Firebase infinite scroll list view Load 10 items on Scrolling

  • Ravindra Kushwaha
    Ravindra Kushwaha over 7 years
    Thanks for your answer.. +1 for your effort.. @kirtan403 have solved my problem..Thanks for input
  • Tal C
    Tal C almost 7 years
    Can you show example for your suggestion? Also, for some reason I'm using similar as you but I am getting: java.lang.IllegalArgumentException: You must use startAt(String value), endAt(String value) or equalTo(String value) in combination with orderByKey(). Other type of values or using the version with 2 parameters is not supported My code is photoRerence.orderByKey().startAt(oldestPostId).limitToFirst‌​(6).addListenerForSi‌​ngleValueEvent(new ValueEventListener() {
  • kirtan403
    kirtan403 almost 7 years
    @TalC It should work. Your error says the same thing as I mentioned first in my answer. Are you sure you are getting error at the same line you shared, because it seems fine to me.
  • Tal C
    Tal C almost 7 years
    I am getting the error at that line. I am thinking that it could be due to the specific key not being loaded in time before it is called. This is due to me using a different library which is buggy in my app at the moment. So I initialized the library and then it immediately tries to request more info from Firebase which is why I am assuming it crashes. It does work if I manually put in a key. So it seems like I have to fix one bug in order to fix this bug. Hopefully that works. Thanks though! Fix one bug, get 99 more lol.
  • Sandip Fichadiya
    Sandip Fichadiya over 6 years
    @kirtan403 when specifying .startAt(oldestPostId), does the result includes the "oldestPostId" value in results as well? If yes, is there any way to tell firebase to something like startAfter(oldestPostId) ?
  • kirtan403
    kirtan403 over 6 years
    @SandipSoni Yes, it includes the result. i don't think so, anything like startAfter exists. But you can ask for startAt and remove the first result.
  • Sandip Fichadiya
    Sandip Fichadiya over 6 years
    @kirtan403 yes that could be the way but to me it shouldn't be required. Anyways thanks for your answer :). Currently I am looking at Firestore which solves most of the limitation of firebase.