Skip to content

Instantly share code, notes, and snippets.

@joseprl89
Last active May 25, 2018 17:55
Show Gist options
  • Save joseprl89/c64e22c77eda3859838d85f70995bbe1 to your computer and use it in GitHub Desktop.
Save joseprl89/c64e22c77eda3859838d85f70995bbe1 to your computer and use it in GitHub Desktop.
public void onCreate(Bundle savedInstanceState) {
MyViewModel model = ViewModelProviders.of(this).get(MyViewModel.class);
model.getUsers().observe(this, users -> {
// update UI
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment