Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Created November 27, 2017 01:40
Show Gist options
  • Save larkintuckerllc/59f66b6a93efe66cf800ef29c09c1d42 to your computer and use it in GitHub Desktop.
Save larkintuckerllc/59f66b6a93efe66cf800ef29c09c1d42 to your computer and use it in GitHub Desktop.
Android Room: Beyond the Codelab - 5
...
public final LiveData<List<Todo>> todos;
private AppDatabase mDb;
public TodosViewModel(Application application) {
super(application);
mDb = AppDatabase.getDatabase(getApplication());
todos = mDb.todoModel().findAllTodos();
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment