JSON Parser Testing for Android
Specifically, we'd like to see a list of users, albums, and photos. The app should at the very least flow as follows:
user >> user's album >> user's photos >> photo.
Get the list of users from https://jsonplaceholder.typicode.com/users and display the “name” of each user in a ListView or a RecyclerView.
When a user taps on a name, open a new Activity which displays a list of albums from https://jsonplaceholder.typicode.com/albums where the “userid” is equal to the id of the selected user.
only those albums which match the userid and not all of the albums from the response must be displayed.
value from “title” field should be shown in the list of albums.
When the user taps on an album, open a new Activity which displays a list of photos from https://jsonplaceholder.typicode.com/photos where the the “albumid” is equal to the id of the selected album.
only those photos which match the albumid and not all of the photos from the response must be displayed.
value from “title” field should be shown in the list of photos.
When the user taps on a photo, open a new Activity where the photo is downloaded and displayed.
Source code:
https://github.com/kanakamedala-rajesh/JsonParserTest