Reputation: 179
I want to develop an android application which parses json data into some meaningful data sets and accordingly display them into the UI . I need suggestions on how to go about it.
PS : i have 0 idea of the available options to chose , so different ways to do the same would help me a lot , since i am new to it
Thanks in advance
Upvotes: 0
Views: 27
Reputation: 881
You can use gson for parsing the data together with some network library like volley or can use retrofit which provide direct parsing with the help of gson and other lib. To accomplish this you first need to create some relevant Java pojo For corresponding json dataset , so that you can use it . You can generate pojo from this website very easily for any json data
http://www.jsonschema2pojo.org/
Upvotes: 1