Skip to content
Advertisement

Arraylist error index out of bound or it is null

As we know there is no multi query option to firebase realtime database, so instead of using default FirebaseRecycler methods I am trying to manually feed keys from arraylist to the recycler view. In order to sort specific keys on the basis specific child nodes of the given parent I wrote below logic.

If I try to individually log the keys in if statement it shows displays all the sorted keys.

But now my problem is whenever I try to log the arraylist after fetching the values it shows null and if I log specific value at some index below error shows up.

JavaScript
JavaScript

I temporarily solved my error using this

JavaScript

but still need an perfect solution

Advertisement

Answer

You could use a callback interface:

JavaScript

and call queryLogic() as

JavaScript

and after the iteration is over just call the method callBack.done().

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement