Scenario
I needed to introduce a search or filter in my android application on the basis of some Tags. I have a Json response coming from some Retrofit calls in a Staggered Grid view.
Questions
- What would be good approach to do it? Instant Search? If yes, then How can i achieve it?
 - I am fetching data in 
Jsonand saving it intoModelclass. Can I take help fromModelclass to implement Search? - How can retrofit help me in searching?
 - Any other concerns?
 
Any help would be appreciable :)
Edit-1
Elaborating more:
- I do have a 
Jsonresponse coming fromRetrofitrequest. Sample of
json:{"Value":2,"tags":["workout","game"]} {"Value":2,"tags":["game","person"]}There are a lot of data coming from the
Jsonwhich I am not pasting here. I am loading aboveJsoninRecycler Staggered Grid View.I do have a Search bar where user will put multiple
Tagslikegame, Person.This search will fetch
Valuesassociated with givenTagsin search box.