Code Monkey home page Code Monkey logo

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.