Code Monkey home page Code Monkey logo

restapimvvm's Introduction


In this course you'll learn how to interact with a REST API from Food2Fork.com. The app will retrieve information from the website and display it in various view types.

Here's the specifics of what you will see in the course:

  1. Communicating with a webservice (rest api) using Retrofit2
  2. MVVM Architecture: ViewModel, Repository, Client structure
  3. How to design an architecture
  4. Singletons
  5. Custom Loading Animation ProgressBar in Recyclerview
  6. ViewModels and AndroidViewModels
  7. Multiple View Types in a Recyclerview
  8. RecyclerView Pagination
  9. Building Custom Toolbars
  10. Customizing Toolbar Behaviors with CoordinatorLayout and AppBarLayout
  11. Observables, LiveData, MutableLiveData and MediatorLiveData
  12. Displaying Images using Glide
  13. CardViews
  14. SearchViews
  15. Menus
  16. Passing data between activities using intent extras
  17. Executors and Background Threads
  18. ThreadPools
  19. Network Security Config for HTTP (API 28+)
  20. And much more...

Architecture Diagram



restapimvvm's People

Contributors

mitchtabian avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

restapimvvm's Issues

Is It Bad if You Not Using DataBinding Library

Hi. Thanks for the great tutorials.

I am fairly new to these MVP, MVVM stuff and trying to find my feet. My questions are

1- You are not using the official Data Binding library. Shall this be considered bad approach, especially when you are using LiveData?

2- If conducting interviews, would you tend to favor more those guys who implement MVVM using "RxJava + Observer" rather than native LiveData + Data Binding + Observer? Why do I feel interviewers will shoot me in the head if I am not using RxJava.

Thanks again :)

subscribeObservers() Method in class RecipeActivity is incomplete

Hi mitch,
In order to follow along I suggest to change the subscribeObservers() Method in the branch "Building a second View Model" with the one you are actually using in the tutorial to test if the ingredients are actually printed to the log.
The one you have here in this branch is related to the next branch where the widgets are set.

private void subscribeObservers(){
mRecipeViewModel.getRecipe().observe(this, new Observer() {
@OverRide
public void onChanged(@nullable Recipe recipe) {
if(recipe != null){
Log.d(TAG, "onChanged: --------------------------------------------");
Log.d(TAG, "onChanged: " + recipe.getTitle());
for(String ingredient: recipe.getIngredients()){
Log.d(TAG, "onChanged: " + ingredient);
}
}
}
});
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.