If I have a Query a
, and I'm setting it to a FirebaseRecyclerAdapter
.
Then, I want to constantly create a new Query
and update the FirebaseRecyclerAdapter
.
E.G:
query = database.orderByChild("child");
query2 = database.orderByChild("child2");
adapter = new FirebaseRecyclerAdapter<...>(...,...,...,query){
...
}
Now, after 3 seconds, I'm looking for a method to change the query. Similar to this:
adapter.setQuery(query2);
Is there an existing method for this? Or was Firebase, like always, too lazy to even work on this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…