A simple Android app that provides easy access to a list of available comics hosted by Marvel and detailed information about each one of them.
- I would add a
SplashScreen
and would move the comics call to it - I would create a local
database
to save the comics - I would create a class
MarvelLocalData
to get the information from the database - I would modify the class
MarvelRepository
to receive theMarvelLocalData
in the constructor and then return the local saved comics in case there was no internet - I would move the
SearchView
to theToolbar
- I would implement the
search to filter
the comics once given a budget - I would implement
more tests
- I would modify the details screen to use
parallax effect
- I would turn the images comic
images circled
- I would add more information on
details screen
such as stories, events, characters - I would allow the user find
more information about the authors
such as other comics they have created, series, event, stories - I would implement parcelable or use
AutoValue
and related on models and remove theSerializable
implementation - I would
polish the layouts