Hi, I'm new to android development. I was faced with the task of implementing a project with the following functionality:
- data comes from the server, they are sent to the objects
- It is required to dynamically create tabs on the screen with a single markup (including buttons and a mini-gallery), but with different data
- it is desirable to implement swipe switching
My question is: which classes and / or libraries should be used to achieve the result (please, in more detail). Thank.
Retrofit+TabLayout+ViewPager+PagerAdapter+Fragment+RecyclerView+Picasso+Button. - FlippyRetrofitmake a request to the server, get a collection of models, let's say it will be links to photos in several blocks. For each block, create a tab inTabLayoutand a fragment in theViewPager, then in each fragment create a grid of photos viaRecyclerView+GridLayoutManagerand upload pictures by links viaPicasso- Flippy