Android : Alternatives to JSON-object binding in Android application

on Friday, October 31, 2014


From my Android application I need to use a RESTful web service that returns me a list of objects in json format. This list can be very long (about 1000/2000 object.).


What I need to do is to search and retrive just some of the objects inside the json file.


Due to the limited memory of mobile device, I was thinking that using object-binding (using for example GSON library) can be dangerous.


Which are the alternatives for solving this problem?


0 comments:

Post a Comment