I need to parse a remote response from a URL that retrieves a big JSON object and store it locally so we can perform searches for example, in an activity in Android.
I’ve been trying to look it up but I can’t find any approach about how to do it.
Any suggestion/help please?
Thanks a lot in advance!
You can use Gson parsing to parse the JSON from url.
For Storing the result use sqlite Database.
Here is the good example for GSON parsing
For sqlite follow this link