I wann make app wich search more than once thing from my firebase real-time database for recycler view.
My database looks like
Node
.
.Item
.
...pushKey()
.
. Name:- "iodex"
. Type:- "balm"
Now,i know how to search only one thing let say Name. By
database.getRefrence().child("Item"). orderByChild ("Name"). startAt(...).endAt(...);
But i want to search both Name and Type simultaneously, So how can i do? Thank you